Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 84d30f2

Browse files
authored
Workaround for missing hazelcast-jet-sql-javadoc.jar (#2863)
1 parent af0b66d commit 84d30f2

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

hazelcast-jet-sql/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,25 @@
434434
</archive>
435435
</configuration>
436436
</plugin>
437+
<plugin>
438+
<groupId>org.apache.maven.plugins</groupId>
439+
<artifactId>maven-jar-plugin</artifactId>
440+
<executions>
441+
<execution>
442+
<phase>package</phase>
443+
<goals>
444+
<goal>jar</goal>
445+
</goals>
446+
<configuration>
447+
<classifier>javadoc</classifier>
448+
<classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory>
449+
<excludes>
450+
<exclude>.*</exclude>
451+
</excludes>
452+
</configuration>
453+
</execution>
454+
</executions>
455+
</plugin>
437456
</plugins>
438457
</build>
439458

hazelcast-jet-sql/src/main/javadoc/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)