We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b423de commit 85983cbCopy full SHA for 85983cb
pom.xml
@@ -92,6 +92,20 @@ POSSIBILITY OF SUCH DAMAGE.
92
<skipDeploy>false</skipDeploy> <!-- This is `true` in parent pom -->
93
</configuration>
94
</plugin>
95
+ <!-- Generate source JARs (required for Maven Central deployment) -->
96
+ <plugin>
97
+ <groupId>org.apache.maven.plugins</groupId>
98
+ <artifactId>maven-source-plugin</artifactId>
99
+ <version>3.3.1</version>
100
+ <executions>
101
+ <execution>
102
+ <id>attach-sources</id>
103
+ <goals>
104
+ <goal>jar-no-fork</goal>
105
+ </goals>
106
+ </execution>
107
+ </executions>
108
+ </plugin>
109
</plugins>
110
</build>
111
0 commit comments