mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-07 08:39:12 +00:00
[FEATURE] Added generation of javadocs
This commit is contained in:
@@ -9,6 +9,9 @@ before_install:
|
|||||||
- chmod +x ./.travis/call-creation.sh
|
- chmod +x ./.travis/call-creation.sh
|
||||||
- mvn clean
|
- mvn clean
|
||||||
|
|
||||||
|
install:
|
||||||
|
- sudo apt-get update && sudo apt-get --assume-yes install zip unzip
|
||||||
|
|
||||||
script: "./.travis/maven-build.sh"
|
script: "./.travis/maven-build.sh"
|
||||||
|
|
||||||
after_deploy: "./.travis/call-creation.sh"
|
after_deploy: "./.travis/call-creation.sh"
|
||||||
|
|||||||
@@ -107,6 +107,25 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<configuration>
|
||||||
|
<doctitle>${project.name} V${project.version}</doctitle>
|
||||||
|
<failOnError>false</failOnError>
|
||||||
|
<quiet>true</quiet>
|
||||||
|
<outputDirectory>${project.build.directory}/apidocs/${project.version}</outputDirectory>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
|||||||
Reference in New Issue
Block a user