master
fengshuonan 6 years ago
parent c3c829582e
commit 30494e8074

@ -63,6 +63,51 @@
<target>${java.version}</target> <target>${java.version}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
<resources> <resources>
<resource> <resource>
@ -77,5 +122,28 @@
</resources> </resources>
</build> </build>
<developers>
<developer>
<name>stylefeng</name>
<email>sn93@qq.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@gitee.com:stylefeng/guns-generator.git</connection>
<developerConnection>scm:git@gitee.com:stylefeng/guns-generator.git</developerConnection>
<url>https://gitee.com/stylefeng/guns-generator</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>center</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>center</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project> </project>

Loading…
Cancel
Save