diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 18afb24..75318c4 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -19,8 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- # 01-May-2022, tatu: Until we require Java 8, cannot test against JDK 17 or above
- java_version: ['8', '11']
+ java_version: ['8', '11', '17', '21']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
@@ -31,7 +30,7 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- server-id: sonatype-nexus-snapshots
+ server-id: central-snapshots
server-username: CI_DEPLOY_USERNAME
server-password: CI_DEPLOY_PASSWORD
- name: Build
@@ -42,8 +41,8 @@ jobs:
- name: Deploy snapshot
if: ${{ github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }}
env:
- CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
- CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
+ CI_DEPLOY_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }}
+ CI_DEPLOY_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }}
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
run: ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy
- name: Generate code coverage
diff --git a/pom.xml b/pom.xml
index 86abc3a..16ccc74 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
aalto-xml
- 1.3.5-SNAPSHOT
+ 1.4.0-SNAPSHOT
bundle
@@ -34,8 +34,9 @@
- 1.6
+ -->
+
+ 1.8
${java.version}
${java.version}
@@ -60,8 +61,8 @@ org.xml.sax, org.xml.sax.ext, org.xml.sax.helpers
org.codehaus.woodstox
@@ -82,7 +83,7 @@ org.xml.sax, org.xml.sax.ext, org.xml.sax.helpers
com.fasterxml.woodstox
woodstox-core
- 6.7.0
+ 7.1.1
test
diff --git a/release-notes/VERSION b/release-notes/VERSION
index cc1c2c3..150419e 100644
--- a/release-notes/VERSION
+++ b/release-notes/VERSION
@@ -4,6 +4,10 @@ Project: aalto-xml
= Releases
------------------------------------------------------------------------
+1.4.0 (not yet released:
+
+#105: Change JDK baseline to Java 8 (from 1.6)
+
1.3.4 (26-Sep-2025)
- Branch "master" renamed as "main"