We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eed014 commit 26842fbCopy full SHA for 26842fb
fluss-dist/pom.xml
@@ -259,6 +259,25 @@
259
</execution>
260
</executions>
261
</plugin>
262
+
263
+ <!-- Generate empty javadoc jar to make Sonatype OSS happy -->
264
+ <plugin>
265
+ <groupId>org.apache.maven.plugins</groupId>
266
+ <artifactId>maven-jar-plugin</artifactId>
267
+ <executions>
268
+ <execution>
269
+ <id>empty-javadoc-jar</id>
270
+ <phase>package</phase>
271
+ <goals>
272
+ <goal>jar</goal>
273
+ </goals>
274
+ <configuration>
275
+ <classifier>javadoc</classifier>
276
+ <classesDirectory>${basedir}/javadoc</classesDirectory>
277
+ </configuration>
278
+ </execution>
279
+ </executions>
280
+ </plugin>
281
</plugins>
282
</build>
283
0 commit comments