dict
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.admin4j.dict</groupId>
<artifactId>dict</artifactId>
<version>0.10.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.admin4j</groupId>
<artifactId>admin4j-parent</artifactId>
<version>0.10.0</version>
</parent>
<groupId>com.admin4j.dict</groupId>
<artifactId>dict</artifactId>
<version>0.10.0</version>
<packaging>pom</packaging>
<name>admin4j-dict</name>
<description>admin4j dict 字典装换 工具类</description>
<url>https://github.com/admin4j/admin4j-dict</url>
<organization>
<name>admin4j</name>
<url>https://github.com/admin4j</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>admin4j</name>
<email>1218853253@qq.com</email>
<organization>https://github.com/admin4j</organization>
<timezone>+8</timezone>
</developer>
</developers>
<modules>
<module>dict-core</module>
<module>dict-anno</module>
<module>dict-provider-sql</module>
<module>dict-json</module>
<module>dict-excel</module>
<module>dict-spring-boot-example</module>
<module>dict-spring-boot-starter</module>
</modules>
<scm>
<connection>scm:git@github.com:admin4j/admin4j-dict</connection>
<developerConnection>scm:git@github.com:admin4j/admin4j-dict</developerConnection>
<url>https://github.com/admin4j/admin4j-dict</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/admin4j/admin4j-dict/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>${repository.releases.id}</id>
<url>${repository.releases.url}</url>
</repository>
<snapshotRepository>
<id>${repository.releases.id}</id>
<url>${repository.snapshots.url}</url>
</snapshotRepository>
</distributionManagement>
<properties>
<revision>0.10.0</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<configuration>
<flattenedPomFilename>pom-xml-flattened</flattenedPomFilename>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ossrh</id>
<activation />
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoDropAfterRelease>true</autoDropAfterRelease>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<repository.releases.id>ossrh</repository.releases.id>
<repository.releases.url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</repository.releases.url>
<repository.snapshots.url>https://s01.oss.sonatype.org/content/repositories/snapshots</repository.snapshots.url>
</properties>
</profile>
</profiles>
</project>