Skip to content

Commit 05f3c9f

Browse files
committed
Require Java 17 and upgrade maven-xml-impl to 4.0.0-beta-3
1 parent 0890afc commit 05f3c9f

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/maven.yml

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ jobs:
2323
build:
2424
name: Build it
2525
uses: codehaus-plexus/.github/.github/workflows/maven.yml@master
26+
with:
27+
# Works with Java 17+
28+
matrix-exclude: >
29+
[
30+
{"jdk": "8"},
31+
{"jdk": "11"}
32+
]
2633
2734
deploy:
2835
name: Deploy

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ This library consists of XML classes (`org.codehaus.plexus.util.xml` and `org.co
1313

1414
2. then updated to use Maven 4-specific [`maven-xml-api`](https://github.com/apache/maven/tree/maven-4.0.0-alpha-7/api/maven-api-xml)/[`maven-xml-impl`](https://github.com/apache/maven/tree/maven-4.0.0-alpha-7/maven-xml-impl):\
1515
this is the `master` branch from which `plexus-xml` 4 is released\
16+
Version 4.x requires Java 17 (like Maven 4)
1617
[![Maven Central](https://img.shields.io/maven-central/v/org.codehaus.plexus/plexus-xml.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.codehaus.plexus/plexus-xml)
1718

1819
For publishing [the site](https://codehaus-plexus.github.io/plexus-xml/) do the following:

pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424
</parent>
2525

2626
<artifactId>plexus-xml</artifactId>
27-
<version>4.0.5-SNAPSHOT</version>
27+
<version>4.1.0-SNAPSHOT</version>
2828

2929
<name>Plexus XML Utilities</name>
3030
<description>A collection of various utility classes to ease working with XML.</description>
@@ -48,14 +48,15 @@ limitations under the License.
4848
</distributionManagement>
4949

5050
<properties>
51+
<javaVersion>17</javaVersion>
5152
<project.build.outputTimestamp>2024-05-21T21:02:17Z</project.build.outputTimestamp>
5253
</properties>
5354

5455
<dependencies>
5556
<dependency>
5657
<groupId>org.apache.maven</groupId>
5758
<artifactId>maven-xml-impl</artifactId>
58-
<version>4.0.0-alpha-9</version>
59+
<version>4.0.0-beta-3</version>
5960
<exclusions>
6061
<exclusion>
6162
<groupId>org.eclipse.sisu</groupId>

0 commit comments

Comments
 (0)