Skip to content

Commit

Permalink
Workaround for missing hazelcast-jet-sql-javadoc.jar (#2863)
Browse files Browse the repository at this point in the history
  • Loading branch information
olukas authored Feb 2, 2021
1 parent af0b66d commit 84d30f2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions hazelcast-jet-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,25 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory>
<excludes>
<exclude>.*</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Empty file.

0 comments on commit 84d30f2

Please sign in to comment.