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
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,27 @@ on:
branches:
- main
- "1.6"
- "1.7"
paths-ignore:
- "README.md"
- "release-notes/*"
pull_request:
branches:
- main
- "1.6"
- "1.7"

permissions:
contents: read

jobs:
build:
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
java_version: ['8', '11', '17', '21']
# 26-Sep-2025, tatu: some test failures on 21 cannot yet enable
java_version: ['8', '11', '17']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
Expand Down
3 changes: 2 additions & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ Java ClassMate project: licensed under Apache License 2.0

Release notes:

1.7.1 (not yet released)
1.7.1 (26-Sep-2025)

- Branch "master" renamed as "main"
- Update to `oss-parent` v68 to switch to Central Portal publishing

1.7.0 (02-Jan-2024)

Expand Down
27 changes: 6 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.fasterxml</groupId>
<artifactId>oss-parent</artifactId>
<version>56</version>
<version>68</version>
</parent>
<artifactId>classmate</artifactId>
<name>ClassMate</name>
Expand Down Expand Up @@ -67,26 +67,11 @@ com.fasterxml.classmate.*;version=${project.version}

<build>
<plugins>

<!-- 19-Oct-2019, tatu: Copied from

https://github.com/stephenc/git-timestamp-maven-plugin/blob/master/pom.xml#L327-L337

to simplify releases. I hope.
-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<!-- 19-Oct-2019, tatu: from output -->
<stagingProfileId>b34f19b9cc6224</stagingProfileId>
</configuration>
</plugin>

<!-- 26-Sep-2025, tatu: Ensure we use new Sonatype Central Portal: -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
Expand Down