[Git][java-team/cmlxom][upstream] New upstream version 4.14

Andrius Merkys (@merkys) gitlab at salsa.debian.org
Mon Nov 10 08:37:01 GMT 2025



Andrius Merkys pushed to branch upstream at Debian Java Maintainers / cmlxom


Commits:
5017ac51 by Andrius Merkys at 2025-11-10T02:33:02-05:00
New upstream version 4.14
- - - - -


4 changed files:

- .github/workflows/maven.yml
- CITATION.cff
- README.md
- pom.xml


Changes:

=====================================
.github/workflows/maven.yml
=====================================
@@ -10,7 +10,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        java: [ 8, 11, 17, 19 ]
+        java: [ 8, 11, 17, 21 ]
 
     steps:
     - uses: actions/checkout at v4
@@ -36,7 +36,7 @@ jobs:
     - name: Build with Maven
       run: mvn clean install -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.failure.ignore=true
     - name: Upload coverage reports to Codecov
-      uses: codecov/codecov-action at v4
+      uses: codecov/codecov-action at v5
       with:
         token: ${{ secrets.CODECOV_TOKEN }}
 


=====================================
CITATION.cff
=====================================
@@ -1,8 +1,8 @@
 cff-version: 1.2.0
 message: "If you use this software, please cite it as below."
 title: CMLXOM
-version: 4.13
-date-released: 2025-07-20
+version: 4.14
+date-released: 2025-11-09
 url: "https://github.com/BlueObelisk/cmlxom"
 preferred-citation:
   type: article


=====================================
README.md
=====================================
@@ -12,7 +12,7 @@ implementing the XML object model (XOM) for the Chemical Markup Language (CML).
 Instructions to increase the version:
 
 ```shell
-mvn versions:set -DnewVersion=4.14-SNAPSHOT
+mvn versions:set -DnewVersion=4.15-SNAPSHOT
 ```
 
 Deploy to Sonatype with the following commands, for snapshots and releases respectively:


=====================================
pom.xml
=====================================
@@ -5,7 +5,7 @@
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.blueobelisk</groupId>
 	<artifactId>cmlxom</artifactId>
-	<version>4.13</version>
+	<version>4.14</version>
 	<packaging>jar</packaging>
 	<name>CMLXOM</name>
 	<description>A Java library for processing CML</description>
@@ -179,7 +179,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-enforcer-plugin</artifactId>
-				<version>3.6.0</version>
+				<version>3.6.2</version>
 				<executions>
 					<execution>
 					<id>enforce-maven</id>
@@ -202,7 +202,7 @@
 			<plugin>
         			<groupId>org.apache.maven.plugins</groupId>
         			<artifactId>maven-compiler-plugin</artifactId>
-        			<version>3.14.0</version>
+        			<version>3.14.1</version>
         			<configuration>
           				<source>1.8</source>
           				<target>1.8</target>
@@ -211,7 +211,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
-                <version>3.11.2</version>
+                <version>3.12.0</version>
 				<configuration>
 					<doclint>all,-missing</doclint>
 					<source>8</source>
@@ -297,7 +297,7 @@
 			<plugin>
 				<groupId>org.sonatype.central</groupId>
 				<artifactId>central-publishing-maven-plugin</artifactId>
-				<version>0.8.0</version>
+				<version>0.9.0</version>
 				<extensions>true</extensions>
 				<configuration>
 					<publishingServerId>central</publishingServerId>
@@ -322,7 +322,7 @@
       <plugin>
         <groupId>org.jacoco</groupId>
         <artifactId>jacoco-maven-plugin</artifactId>
-        <version>0.8.13</version>
+        <version>0.8.14</version>
         <executions>
           <execution>
             <id>start-agent</id>
@@ -344,7 +344,7 @@
   <distributionManagement>
     <snapshotRepository>
       <id>central</id>
-      <url>https://central.sonatype.com</url>
+      <url>https://central.sonatype.com/repository/maven-snapshots/</url>
     </snapshotRepository>
     <repository>
       <id>central</id>
@@ -362,7 +362,8 @@
       <snapshots>
         <enabled>true</enabled>
       </snapshots>
-      <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
+      <url>https://central.sonatype.com/repository/maven-snapshots/</url>
+	  <layout>default</layout>
     </repository>
   </repositories>
  
@@ -370,7 +371,7 @@
 		<dependency>
 			<groupId>org.blueobelisk</groupId>
 			<artifactId>euclid</artifactId>
-			<version>2.12</version>
+			<version>2.13</version>
 		</dependency>
 		<dependency>
 			<groupId>xom</groupId>
@@ -397,12 +398,12 @@
 		<dependency>
 			<groupId>commons-io</groupId>
 			<artifactId>commons-io</artifactId>
-			<version>2.20.0</version>
+			<version>2.21.0</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.logging.log4j</groupId>
 			<artifactId>log4j-1.2-api</artifactId>
-			<version>2.25.1</version>
+			<version>2.25.2</version>
 		</dependency>
 		<dependency>
 			<groupId>org.ccil.cowan.tagsoup</groupId>
@@ -430,6 +431,7 @@
 				<plugins>
 					<plugin>
 						<artifactId>maven-assembly-plugin</artifactId>
+						<version>3.7.1</version>
 						<configuration>
 							<descriptorRefs>
 								<descriptorRef>src</descriptorRef>
@@ -446,6 +448,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>3.9.0</version>
 				<reportSets>
 					<reportSet>
 						<reports>
@@ -467,14 +470,17 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-surefire-report-plugin</artifactId>
+				<version>3.5.4</version>
 			</plugin>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-jxr-plugin</artifactId>
+				<version>3.6.0</version>
 			</plugin>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-pmd-plugin</artifactId>
+				<version>3.28.0</version>
 				<configuration>
 					<targetJdk>1.5</targetJdk>
 					<linkXRef>true</linkXRef>
@@ -483,6 +489,7 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-checkstyle-plugin</artifactId>
+				<version>3.6.0</version>
 				<configuration>
 					<configLocation>src/test/resources/checkstyle.xml</configLocation>
 				</configuration>



View it on GitLab: https://salsa.debian.org/java-team/cmlxom/-/commit/5017ac510c54d126e30d94c69e6e2481f01d4034

-- 
View it on GitLab: https://salsa.debian.org/java-team/cmlxom/-/commit/5017ac510c54d126e30d94c69e6e2481f01d4034
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20251110/33a4232d/attachment.htm>


More information about the pkg-java-commits mailing list