Generate javadoc jar

This commit is contained in:
Stephane Nicoll 2019-10-07 16:13:12 -05:00
parent ede7e3013e
commit 56e5b10eba

View File

@ -200,5 +200,36 @@
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>full</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>${java.version}</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<inherited>true</inherited>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>