upload sources jar and enable maven cache on ci #37

Merged
jorge.bornhausen merged 2 commits from sources into main 2025-01-07 10:42:32 +00:00
Showing only changes of commit 070101f041 - Show all commits

15
pom.xml
View file

@ -28,6 +28,7 @@
<jacoco-plugin.version>0.8.12</jacoco-plugin.version> <!-- Match with version from Quarkus BOM -->
<jandex-plugin.version>3.2.3</jandex-plugin.version>
<release-plugin.version>3.1.1</release-plugin.version>
<source-plugin.version>3.3.1</source-plugin.version>
<!-- Build properties -->
<maven.compiler.release>21</maven.compiler.release>
@ -196,6 +197,20 @@
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>