Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
843d346
build(deps): Bump actions/cache from 2 to 5
dependabot[bot] Jan 18, 2026
6f41ed6
Merge pull request #48 from semantic-release-java/dependabot/github_a…
nidotls Jan 18, 2026
759cb23
build(deps): Bump org.apache.maven:maven-plugin-api from 3.8.3 to 3.9.12
dependabot[bot] Jan 18, 2026
dd3632b
build(deps-dev): Bump org.apache.maven.plugins:maven-source-plugin
dependabot[bot] Jan 18, 2026
d6e0305
build(deps-dev): Bump org.apache.maven.plugins:maven-plugin-plugin
dependabot[bot] Jan 18, 2026
f0121fa
build(deps): Bump org.apache.maven.plugin-tools:maven-plugin-annotations
dependabot[bot] Jan 18, 2026
8a83cab
build(deps): Bump org.codehaus.plexus:plexus-component-annotations
dependabot[bot] Jan 18, 2026
576eec4
build(deps-dev): Bump org.apache.maven.plugins:maven-javadoc-plugin
dependabot[bot] Jan 18, 2026
876d475
build(deps): Bump org.apache.maven:maven-core from 3.8.3 to 3.9.12
dependabot[bot] Jan 18, 2026
7a0a012
build(deps): Bump actions/checkout from 2 to 6
dependabot[bot] Jan 18, 2026
28f937e
build(deps-dev): Bump org.apache.maven.plugins:maven-gpg-plugin
dependabot[bot] Jan 18, 2026
b6a6bc5
build(deps-dev): Bump org.codehaus.plexus:plexus-component-metadata
dependabot[bot] Jan 18, 2026
0600377
build(deps): Bump actions/setup-java from 2 to 5
dependabot[bot] Jan 18, 2026
88fb160
Merge pull request #46 from semantic-release-java/dependabot/github_a…
nidotls Jan 18, 2026
a6083b1
Merge pull request #49 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
edb7bdc
Merge pull request #57 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
5c5d274
Merge pull request #56 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
740f964
Merge pull request #54 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
3bb8faa
Merge pull request #53 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
645316c
Merge pull request #51 from semantic-release-java/dependabot/github_a…
nidotls Jan 18, 2026
8553a0d
Merge pull request #50 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
5ee2739
Merge pull request #47 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
1704121
Merge pull request #55 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
d8ca48c
Merge pull request #52 from semantic-release-java/dependabot/maven/de…
nidotls Jan 18, 2026
4a75e8b
chore: set maven.compiler.release to java 17
nidotls Jan 18, 2026
0e8a451
chore: update java build to 17 and 21
nidotls Jan 18, 2026
e8babc3
chore: update java in release.yml to 17
nidotls Jan 18, 2026
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
java: [ "8", "11" ] # 16?
java: [ "17", "21" ] # "25"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: "adopt"

- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-build-${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up JDK 16
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: 11
java-version: 17
distribution: "adopt"
server-id: ossrh
server-username: OSSRH_USERNAME
Expand All @@ -27,7 +27,7 @@ jobs:
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-build-${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
Expand Down
34 changes: 23 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,27 +60,27 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.8.3</version>
<version>3.9.12</version>
</dependency>

<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.2</version>
<version>3.15.2</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-annotations</artifactId>
<version>2.1.1</version>
<version>2.2.0</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.8.3</version>
<version>3.9.12</version>
<scope>provided</scope>
</dependency>

Expand All @@ -92,8 +92,7 @@
</dependencies>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -108,7 +107,7 @@
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<executions>
<execution>
<goals>
Expand All @@ -120,7 +119,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.1</version>
<version>3.15.2</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
Expand All @@ -144,7 +143,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -157,7 +156,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -170,7 +169,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -187,6 +186,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down
Loading