Skip to content

Commit 07112bb

Browse files
updated jtest-utils + change deployment via maven central portal api
1 parent 9a46f45 commit 07112bb

File tree

2 files changed

+12
-33
lines changed

2 files changed

+12
-33
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 9.28 (2025-08-01)
4+
- #### Changed
5+
- Updated dependencies
6+
37
## 9.27 (2025-03-28)
48
- #### Changed
59
- Updated `jtest-utils` dependency to the next major version.

pom.xml

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>io.github.fslev</groupId>
@@ -20,7 +21,7 @@
2021
<properties>
2122
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2223
<surefire.version>3.5.3</surefire.version>
23-
<jtest.utils.version>6.0</jtest.utils.version>
24+
<jtest.utils.version>6.1</jtest.utils.version>
2425
<cucumber.min.version>6.10.0</cucumber.min.version>
2526
<guice.min.version>4.2.1</guice.min.version>
2627
<spring-expression-version>5.3.39</spring-expression-version>
@@ -215,27 +216,13 @@
215216
</executions>
216217
</plugin>
217218
<plugin>
218-
<artifactId>maven-deploy-plugin</artifactId>
219-
<version>3.1.4</version>
220-
<executions>
221-
<execution>
222-
<id>default-deploy</id>
223-
<phase>deploy</phase>
224-
<goals>
225-
<goal>deploy</goal>
226-
</goals>
227-
</execution>
228-
</executions>
229-
</plugin>
230-
<plugin>
231-
<groupId>org.sonatype.plugins</groupId>
232-
<artifactId>nexus-staging-maven-plugin</artifactId>
233-
<version>1.7.0</version>
219+
<groupId>org.sonatype.central</groupId>
220+
<artifactId>central-publishing-maven-plugin</artifactId>
221+
<version>0.8.0</version>
234222
<extensions>true</extensions>
235223
<configuration>
236-
<serverId>ossrh</serverId>
237-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
238-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
224+
<publishingServerId>central</publishingServerId>
225+
<autoPublish>true</autoPublish>
239226
</configuration>
240227
</plugin>
241228
</plugins>
@@ -357,18 +344,6 @@
357344
<tag>HEAD</tag>
358345
</scm>
359346

360-
<distributionManagement>
361-
<snapshotRepository>
362-
<id>ossrh</id>
363-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
364-
</snapshotRepository>
365-
<repository>
366-
<id>ossrh</id>
367-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/
368-
</url>
369-
</repository>
370-
</distributionManagement>
371-
372347
<licenses>
373348
<license>
374349
<name>Apache License, Version 2.0</name>

0 commit comments

Comments
 (0)