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: 7 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
build:
name: Build it
uses: codehaus-plexus/.github/.github/workflows/maven.yml@master
with:
# Works with Java 17+
matrix-exclude: >
[
{"jdk": "8"},
{"jdk": "11"}
]

deploy:
name: Deploy
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This library consists of XML classes (`org.codehaus.plexus.util.xml` and `org.co

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):\
this is the `master` branch from which `plexus-xml` 4 is released\
Version 4.x requires Java 17 (like Maven 4)
[![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)

For publishing [the site](https://codehaus-plexus.github.io/plexus-xml/) do the following:
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ limitations under the License.
</parent>

<artifactId>plexus-xml</artifactId>
<version>4.0.5-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>

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

<properties>
<javaVersion>17</javaVersion>
<project.build.outputTimestamp>2024-05-21T21:02:17Z</project.build.outputTimestamp>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-xml-impl</artifactId>
<version>4.0.0-alpha-9</version>
<version>4.0.0-beta-3</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.sisu</groupId>
Expand Down