[Git][java-team/cmlxom][master] 4 commits: New upstream version 4.13

Andrius Merkys (@merkys) gitlab at salsa.debian.org
Tue Sep 2 10:39:14 BST 2025



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


Commits:
80831c56 by Andrius Merkys at 2025-09-02T03:38:19-04:00
New upstream version 4.13
- - - - -
bfaf4f43 by Andrius Merkys at 2025-09-02T03:38:23-04:00
Update upstream source from tag 'upstream/4.13'

Update to upstream version '4.13'
with Debian dir e4b0896b3efa4c6b1db9ce64ed400ef3294304af
- - - - -
285560c4 by Andrius Merkys at 2025-09-02T03:39:31-04:00
Update changelog for 4.13-1 release

- - - - -
a5b7910c by Andrius Merkys at 2025-09-02T03:41:41-04:00
Ignore org.sonatype.central:central-publishing-maven-plugin.

- - - - -


5 changed files:

- CITATION.cff
- README.md
- debian/changelog
- debian/maven.ignoreRules
- pom.xml


Changes:

=====================================
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.11
-date-released: 2025-03-30
+version: 4.13
+date-released: 2025-07-20
 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.12-SNAPSHOT
+mvn versions:set -DnewVersion=4.14-SNAPSHOT
 ```
 
 Deploy to Sonatype with the following commands, for snapshots and releases respectively:


=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+cmlxom (4.13-1) unstable; urgency=medium
+
+  * New upstream version 4.13
+
+ -- Andrius Merkys <merkys at debian.org>  Tue, 02 Sep 2025 03:39:28 -0400
+
 cmlxom (4.11-1) unstable; urgency=medium
 
   * New upstream version 4.11


=====================================
debian/maven.ignoreRules
=====================================
@@ -8,5 +8,5 @@ org.apache.maven.plugins maven-source-plugin * * * *
 org.codehaus.mojo apt-maven-plugin * * * *
 org.codehaus.mojo cobertura-maven-plugin * * * *
 org.jacoco jacoco-maven-plugin * * * *
-org.sonatype.plugins nexus-staging-maven-plugin * * * *
+org.sonatype.central central-publishing-maven-plugin * * * *
 org.xml-cml euclid-testutil * * * *


=====================================
pom.xml
=====================================
@@ -5,7 +5,7 @@
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.blueobelisk</groupId>
 	<artifactId>cmlxom</artifactId>
-	<version>4.11</version>
+	<version>4.13</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.4.1</version>
+				<version>3.6.0</version>
 				<executions>
 					<execution>
 					<id>enforce-maven</id>
@@ -189,7 +189,7 @@
 					<configuration>
 						<rules>
 						<requireMavenVersion>
-							<version>3.2.5</version>
+							<version>3.6.3</version>
 						</requireMavenVersion>
 						<requireJavaVersion>
 							<version>1.8</version>
@@ -202,7 +202,7 @@
 			<plugin>
         			<groupId>org.apache.maven.plugins</groupId>
         			<artifactId>maven-compiler-plugin</artifactId>
-        			<version>3.12.1</version>
+        			<version>3.14.0</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.6.3</version>
+                <version>3.11.2</version>
 				<configuration>
 					<doclint>all,-missing</doclint>
 					<source>8</source>
@@ -236,7 +236,7 @@
             </plugin>
             <plugin>
                 <artifactId>maven-source-plugin</artifactId>
-                <version>3.3.0</version>
+                <version>3.3.1</version>
                 <executions>
                   <execution>
                     <id>attach-sources</id>
@@ -289,26 +289,26 @@
 			<plugin>
 				<groupId>com.mycila</groupId>
 				<artifactId>license-maven-plugin</artifactId>
-				<version>4.3</version>
+				<version>5.0.0</version>
 				<configuration>
 					<header>src/main/resources/header.txt</header>
 				</configuration>
 			</plugin>
-            <plugin>
-                <groupId>org.sonatype.plugins</groupId>
-                <artifactId>nexus-staging-maven-plugin</artifactId>
-                <version>1.6.13</version>
-                <extensions>true</extensions>
-                <configuration>
-                  <serverId>ossrh</serverId>
-                  <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
-                  <autoReleaseAfterClose>true</autoReleaseAfterClose>
-                </configuration>
-              </plugin>
+			<plugin>
+				<groupId>org.sonatype.central</groupId>
+				<artifactId>central-publishing-maven-plugin</artifactId>
+				<version>0.8.0</version>
+				<extensions>true</extensions>
+				<configuration>
+					<publishingServerId>central</publishingServerId>
+					<autoPublish>true</autoPublish>
+					<waitUntil>published</waitUntil>
+				</configuration>
+			</plugin>
               <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-gpg-plugin</artifactId>
-                <version>3.1.0</version>
+                <version>3.2.8</version>
                 <executions>
                   <execution>
                     <id>sign-artifacts</id>
@@ -322,7 +322,7 @@
       <plugin>
         <groupId>org.jacoco</groupId>
         <artifactId>jacoco-maven-plugin</artifactId>
-        <version>0.8.11</version>
+        <version>0.8.13</version>
         <executions>
           <execution>
             <id>start-agent</id>
@@ -343,12 +343,12 @@
 
   <distributionManagement>
     <snapshotRepository>
-      <id>ossrh</id>
-      <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
+      <id>central</id>
+      <url>https://central.sonatype.com</url>
     </snapshotRepository>
     <repository>
-      <id>ossrh</id>
-      <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+      <id>central</id>
+      <url>https://central.sonatype.com</url>
     </repository>
   </distributionManagement>
 
@@ -370,7 +370,7 @@
 		<dependency>
 			<groupId>org.blueobelisk</groupId>
 			<artifactId>euclid</artifactId>
-			<version>2.10</version>
+			<version>2.12</version>
 		</dependency>
 		<dependency>
 			<groupId>xom</groupId>
@@ -397,12 +397,12 @@
 		<dependency>
 			<groupId>commons-io</groupId>
 			<artifactId>commons-io</artifactId>
-			<version>2.18.0</version>
+			<version>2.20.0</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.logging.log4j</groupId>
 			<artifactId>log4j-1.2-api</artifactId>
-			<version>2.24.3</version>
+			<version>2.25.1</version>
 		</dependency>
 		<dependency>
 			<groupId>org.ccil.cowan.tagsoup</groupId>



View it on GitLab: https://salsa.debian.org/java-team/cmlxom/-/compare/aff50d083c8439e608b6ee05534d3b3566c1418d...a5b7910c87de8cd8961286efaa026b0d38a20812

-- 
View it on GitLab: https://salsa.debian.org/java-team/cmlxom/-/compare/aff50d083c8439e608b6ee05534d3b3566c1418d...a5b7910c87de8cd8961286efaa026b0d38a20812
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/20250902/1264988c/attachment.htm>


More information about the pkg-java-commits mailing list