|
@@ -178,6 +178,40 @@
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-site-plugin</artifactId>
|
|
|
+ <version>3.7.1</version>
|
|
|
+ </plugin>
|
|
|
+ <!-- Javadoc -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
+ <version>3.0.1</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>jar</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <!-- Gpg Signature -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-gpg-plugin</artifactId>
|
|
|
+ <version>1.6</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>sign-artifacts</id>
|
|
|
+ <phase>verify</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>sign</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
@@ -188,18 +222,14 @@
|
|
|
<module>liteflow-test-spring</module>
|
|
|
</modules>
|
|
|
|
|
|
- <!--
|
|
|
<distributionManagement>
|
|
|
- <repository>
|
|
|
- <id>nexus-releases</id>
|
|
|
- <name>nexus-releases</name>
|
|
|
- <url>http://118.178.236.200:8087/nexus/content/repositories/thirdparty</url>
|
|
|
- </repository>
|
|
|
<snapshotRepository>
|
|
|
- <id>nexus-snapshots</id>
|
|
|
- <name>nexus-snapshots</name>
|
|
|
- <url>http://118.178.236.200:8087/nexus/content/repositories/snapshots</url>
|
|
|
+ <id>sonatype</id>
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
</snapshotRepository>
|
|
|
+ <repository>
|
|
|
+ <id>sonatype</id>
|
|
|
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
+ </repository>
|
|
|
</distributionManagement>
|
|
|
- -->
|
|
|
</project>
|