We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b21f67d commit 93649cfCopy full SHA for 93649cf
assembly/pom.xml
@@ -56,6 +56,33 @@
56
</execution>
57
</executions>
58
</plugin>
59
+ <plugin>
60
+ <!-- create empty javadocs adn sources jars for maven central -->
61
+ <groupId>org.apache.maven.plugins</groupId>
62
+ <artifactId>maven-jar-plugin</artifactId>
63
+ <executions>
64
+ <execution>
65
+ <id>javadoc-jar</id>
66
+ <phase>package</phase>
67
+ <goals>
68
+ <goal>jar</goal>
69
+ </goals>
70
+ <configuration>
71
+ <classifier>javadoc</classifier>
72
+ </configuration>
73
+ </execution>
74
75
+ <id>sources-jar</id>
76
77
78
79
80
81
+ <classifier>sources</classifier>
82
83
84
+ </executions>
85
+ </plugin>
86
</plugins>
87
</build>
88
0 commit comments