We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e3f31f commit cff0ea6Copy full SHA for cff0ea6
1 file changed
pom.xml
@@ -76,20 +76,18 @@
76
</executions>
77
</plugin>
78
<plugin>
79
- <groupId>org.jetbrains.dokka</groupId>
80
- <artifactId>dokka-maven-plugin</artifactId>
81
- <version>1.9.20</version>
82
- <configuration>
83
- <sourceDirectories>
84
- <dir>${project.basedir}/src/main/java</dir>
85
- </sourceDirectories>
86
- </configuration>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.6.3</version>
87
<executions>
88
<execution>
89
- <phase>package</phase>
+ <id>attach-javadocs</id>
90
<goals>
91
- <goal>javadocJar</goal>
+ <goal>jar</goal>
92
</goals>
+ <configuration>
+ <failOnError>false</failOnError>
+ </configuration>
93
</execution>
94
95
0 commit comments