Add maven-javadoc-plugin to catch javadoc errors prior to release
This commit is contained in:
14
pom.xml
14
pom.xml
@@ -94,6 +94,20 @@
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
</plugin>
|
||||
<!-- maven-release-plugin runs maven-javadoc-plugin as one of its
|
||||
release steps, so run it on goal jar to detect errors -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
|
||||
@@ -36,8 +36,8 @@ public class PlayerComposition
|
||||
}
|
||||
|
||||
/**
|
||||
* Get equipment ids. If id is >= 256 && < 512 then subtract 256 and the id is a kit definition.
|
||||
* If the id is >= 512 then subtract 512 and the id is an item id.
|
||||
* Get equipment ids. If id is ≥ 256 && < 512 then subtract 256 and the id is a kit definition.
|
||||
* If the id is ≥ 512 then subtract 512 and the id is an item id.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user