Skip to content

Commit b8a5b49

Browse files
authored
fix: Add maven-javadoc-plugin to pom.xml (#2217)
1 parent 40e9e5a commit b8a5b49

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

core/pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,23 @@
238238
</execution>
239239
</executions>
240240
</plugin>
241+
<plugin>
242+
<groupId>org.apache.maven.plugins</groupId>
243+
<artifactId>maven-javadoc-plugin</artifactId>
244+
<version>3.6.3</version>
245+
<configuration>
246+
<source>8</source>
247+
<sourcepath>${project.build.directory}/generated-sources</sourcepath>
248+
</configuration>
249+
<executions>
250+
<execution>
251+
<id>attach-javadocs</id>
252+
<goals>
253+
<goal>jar</goal>
254+
</goals>
255+
</execution>
256+
</executions>
257+
</plugin>
241258
<plugin>
242259
<groupId>com.github.os72</groupId>
243260
<artifactId>protoc-jar-maven-plugin</artifactId>

0 commit comments

Comments
 (0)