uid-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.xfvape</groupId>
<artifactId>uid-parent</artifactId>
<version>0.0.1-RELEASE</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.xfvape</groupId> <artifactId>uid-parent</artifactId> <version>0.0.1-RELEASE</version> <properties> <project.release.version>0.0.1-SNAPSHOT</project.release.version> </properties> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <packaging>pom</packaging> <modules> <module>uid-generator</module> </modules> <licenses> <license> <name>GNU General Public License version 3</name> <url>https://opensource.org/licenses/GPL-3.0</url> </license> </licenses> <scm> <url> https://gitee.com/wenhoran/uid-parent</url> <connection>https://gitee.com/wenhoran/uid-parent.git</connection> <developerConnection>https://gitee.com/wenhoran/uid-parent/issues</developerConnection> </scm> <developers> <developer> <name>wenhaoran</name> <email>804918076@qq.com</email> <url>https://gitee.com/wenhoran/uid-parent/issues</url> </developer> </developers> <profiles> <!-- mvn clean deploy -P release -Dmaven.test.skip=true -X --> <profile> <id>release</id> <properties> <project.release.version>0.0.1-RELEASE</project.release.version> </properties> <build> <plugins> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <encoding>UTF-8</encoding> <aggregate>true</aggregate> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <!-- 关闭校验 --> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <!-- GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <configuration> <useAgent>false</useAgent> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>https://gitee.com/wenhoran/uid-parent/tags/</tagBase> <username>wenhaoran</username> <password>Abc123456789)</password> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>oss-snapshots</id> <name>oss snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>oss-releases</id> <name>oss Releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> </build> </project>