parent
e58af1bc94
commit
41f5d5650d
2
pom.xml
2
pom.xml
@ -288,7 +288,7 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.0</version>
|
<version>3.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<compilerVersion>1.7</compilerVersion>
|
<compilerVersion>1.7</compilerVersion>
|
||||||
<fork>true</fork>
|
<fork>true</fork>
|
||||||
|
@ -39,6 +39,13 @@
|
|||||||
<include>**/*.jar</include>
|
<include>**/*.jar</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
<fileSet>
|
||||||
|
<directory>target/apidocs-all</directory>
|
||||||
|
<outputDirectory>javadoc</outputDirectory>
|
||||||
|
<includes>
|
||||||
|
<include>**/*.jar</include>
|
||||||
|
</includes>
|
||||||
|
</fileSet>
|
||||||
</fileSets>
|
</fileSets>
|
||||||
</assembly>
|
</assembly>
|
||||||
|
|
||||||
|
@ -151,6 +151,19 @@
|
|||||||
<includeArtifactIds>netty-all</includeArtifactIds>
|
<includeArtifactIds>netty-all</includeArtifactIds>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>copy-apidocs-all-in-one</id>
|
||||||
|
<phase>prepare-package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>copy-dependencies</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<classifier>javadoc</classifier>
|
||||||
|
<outputDirectory>${project.build.directory}/apidocs-all</outputDirectory>
|
||||||
|
<includeGroupIds>${project.groupId}</includeGroupIds>
|
||||||
|
<includeArtifactIds>netty-all</includeArtifactIds>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
Loading…
Reference in New Issue
Block a user