Add maven-source-plugin to generate and attach source JARs, update changelog

This commit is contained in:
2025-12-30 12:58:07 +01:00
parent a965f21d6b
commit ce1f766326
2 changed files with 16 additions and 0 deletions
+2
View File
@@ -49,6 +49,8 @@ The dependency is:
## Changelog
- 0.2.0-beta-2
- add a missing source jar
- 0.2.0-beta-1
- ResponseResultInfo#Errors: wrong object structure
- changing multiple records with put, post, patch and delete for dns-records
+14
View File
@@ -228,6 +228,20 @@
<version>3.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>