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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
build:
runs-on: 'ubuntu-22.04'
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
Expand All @@ -32,7 +32,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
Expand All @@ -45,5 +45,5 @@ jobs:
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./target/site/jacoco/jacoco.xml
files: ./target/site/jacoco/jacoco.xml
flags: unittests
70 changes: 10 additions & 60 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.fasterxml</groupId>
<artifactId>oss-parent</artifactId>
<version>61</version>
<version>68</version>
</parent>

<groupId>com.fasterxml.woodstox</groupId>
Expand Down Expand Up @@ -235,7 +235,8 @@ SAX2 and Stax2 APIs
https://github.com/stephenc/git-timestamp-maven-plugin/blob/master/pom.xml#L327-L337

to simplify releases. I hope.
-->
-->
<!-- 28-May-2025, tatu: No longer used/needed; can remove soon
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand All @@ -244,11 +245,16 @@ SAX2 and Stax2 APIs
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<!-- 12-Oct-2019, tatu: Found this from output of mvn:relase -->
<stagingProfileId>b34f19b9cc6224</stagingProfileId>
</configuration>
</plugin>
</plugin>
-->

<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
Expand Down Expand Up @@ -434,60 +440,4 @@ SAX2 and Stax2 APIs
</plugins>
</reporting>

<profiles>
<!-- @GedMarc 20190717 - Because of shading cannot use a legitimate module file - must be dynamically built up like above-->

<!-- <profile>
<id>moditect</id>
<properties>
&lt;!&ndash; Not only do we need JDK 9+, must target later JDK too &ndash;&gt;
<java.version>1.9</java.version>
</properties>
<dependencies>
<dependency>
<groupId>net.java.dev.msv</groupId>
<artifactId>msv-rngconverter</artifactId>
<version>${version.msv}</version>
<scope>provided</scope>
<optional>true</optional>
<exclusions>
&lt;!&ndash; 12-Mar-2019, tatu: xercesImpl causes heartburn to Moditect/jdeps so... &ndash;&gt;
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.moditect</groupId>
<artifactId>moditect-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-module-info</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-module-info</goal>
</goals>
<configuration>
<modules>
<module>
<artifact>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</artifact>
</module>
</modules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>-->
</profiles>

</project>
1 change: 1 addition & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Project: woodstox
(fix contributed by Philipp N)
#220: Switch to lookup tables in hotspots `isNameChar()`/`isNameStartChar()`
(contributed by @winfriedgerlach)
- Update to `oss-parent` v68 to switch to Central Portal publishing

7.1.0 (22-Oct-2024)

Expand Down
Loading