Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ jobs:
branch:
uses: onecx/ci-java-lib/.github/workflows/cli-build-branch.yml@v1
secrets: inherit
with:
java-version: '25'
2 changes: 2 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ jobs:
pr:
uses: onecx/ci-java-lib/.github/workflows/cli-build-pr.yml@v1
secrets: inherit
with:
java-version: '25'
4 changes: 3 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ on:
jobs:
release:
uses: onecx/ci-java-lib/.github/workflows/cli-build-release.yml@v1
secrets: inherit
secrets: inherit
with:
java-version: '25'
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ jobs:
build:
uses: onecx/ci-java-lib/.github/workflows/cli-build.yml@v1
secrets: inherit
with:
java-version: '25'
23 changes: 3 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<groupId>org.tkit.onecx</groupId>
<artifactId>onecx-bundle</artifactId>
<version>999-SNAPSHOT</version>
<packaging>quarkus</packaging>

<name>onecx-bundle</name>
<description>Onecx release bundle application</description>
Expand Down Expand Up @@ -42,9 +43,7 @@

<!-- Maven configuration -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.release>25</maven.compiler.release>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.compiler-plugin.version>3.15.0</maven.compiler-plugin.version>
<maven.formatter-plugin.version>2.29.0</maven.formatter-plugin.version>
Expand All @@ -55,7 +54,7 @@
<source-plugin.version>3.3.1</source-plugin.version>

<!-- Other -->
<nisse-plugin3.version>0.8.1</nisse-plugin3.version>
<nisse-plugin3.version>0.8.4</nisse-plugin3.version>
<jreleaser-maven-plugin.version>1.23.0</jreleaser-maven-plugin.version>

<!-- jrelease -->
Expand Down Expand Up @@ -129,28 +128,12 @@
</dependencies>

<build>
<extensions>
<extension>
<groupId>eu.maveniverse.maven.nisse</groupId>
<artifactId>extension</artifactId>
<version>${nisse-plugin3.version}</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>build</goal>
<goal>generate-code</goal>
<goal>generate-code-tests</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down