Skip to content

Commit 8879631

Browse files
Added dokka task to generate Javadoc package
1 parent 76ac833 commit 8879631

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

pom.xml

+13-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>graphics.scenery</groupId>
1212
<artifactId>scenery</artifactId>
13-
<version>0.1.1-SNAPSHOT</version>
13+
<version>0.1.0-SNAPSHOT</version>
1414
<inceptionYear>2016</inceptionYear>
1515
<licenses>
1616
<license>
@@ -101,7 +101,7 @@
101101
<scijava.jvm.version>1.8</scijava.jvm.version>
102102
<kotlin.version>1.0.6</kotlin.version>
103103
<slf4j.version>1.7.21</slf4j.version>
104-
<dokka.version>0.9.10</dokka.version>
104+
<dokka.version>0.9.13</dokka.version>
105105
<lwjgl.version>3.1.1</lwjgl.version>
106106
<license.licenseName>lgpl_v3</license.licenseName>
107107
<license.copyrightOwners>the scenery development team</license.copyrightOwners>
@@ -455,7 +455,7 @@
455455
<execution>
456456
<phase>pre-site</phase>
457457
<goals>
458-
<goal>dokka</goal>
458+
<goal>javadocJar</goal>
459459
</goals>
460460
</execution>
461461
</executions>
@@ -515,6 +515,16 @@
515515
</executions>
516516
</plugin>
517517

518+
<plugin>
519+
<groupId>org.apache.maven.plugins</groupId>
520+
<artifactId>maven-release-plugin</artifactId>
521+
<version>2.5.3</version>
522+
<configuration>
523+
<goals>dokka:javadocJar deploy</goals>
524+
</configuration>
525+
</plugin>
526+
518527
</plugins>
519528
</build>
529+
520530
</project>

0 commit comments

Comments
 (0)