Skip to content

Commit f5409ae

Browse files
committed
Merge branch 'develop'
2 parents 0a59921 + dc88ebc commit f5409ae

File tree

6 files changed

+11
-17
lines changed

6 files changed

+11
-17
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
java-version: 21
4242
distribution: temurin
4343
cache: maven
44-
server-id: ossrh
44+
server-id: central
4545
server-username: MAVEN_USERNAME
4646
server-password: MAVEN_PASSWORD
4747

DEV.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Where:
7676
* `clean` is needed to avoid the `verify-*` modules check outdated reports of previous builds.
7777
* `install` will copy the built framework (jar) in your local maven repo, so that you can use it locally in other projects/modules.
7878
* the `-DskipSign` flag allows to skip signing the artifact with a gpg key. That's needed in GitHub actions to publish
79-
on [Ossrh](https://s01.oss.sonatype.org/content/repositories/releases/io/github/giulong/spectrum/).
79+
on [Maven Central](https://central.sonatype.com/artifact/io.github.giulong/spectrum).
8080
* the `-DbrowsersTests` property is a shorthand to activate all the profiles needed to run tests on all the browsers. It's equivalent to
8181
running with these active profiles: `-P chrome,firefox,edge`.
8282
* the `-DmacosTests` property is a shorthand to activate all the profiles needed to run tests on macOS. It's equivalent to

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![javadoc](https://javadoc.io/badge2/io.github.giulong/spectrum/javadoc.svg)](https://javadoc.io/doc/io.github.giulong/spectrum)
77
[![badge-jdk](https://img.shields.io/badge/jdk-21-blue.svg)](https://jdk.java.net/archive/)
88
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
9-
[![Maven Central](https://img.shields.io/maven-central/v/io.github.giulong/spectrum.svg)](https://search.maven.org/search?q=g:io.github.giulong%20a:spectrum)
9+
[![Maven Central](https://img.shields.io/maven-central/v/io.github.giulong/spectrum.svg)](https://central.sonatype.com/artifact/io.github.giulong/spectrum)
1010
[![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/y/giulong/spectrum/develop)](https://github.com/giulong/spectrum/commits/develop/)
1111
[![GitHub Discussions](https://img.shields.io/github/discussions/giulong/spectrum)](https://github.com/giulong/spectrum/discussions)
1212

docs/json-schemas/1.25.0/Configuration-schema.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</licenses>
3434

3535
<properties>
36-
<revision>1.24.4</revision>
36+
<revision>1.25.0</revision>
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3838
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3939
<docs.folder>docs</docs.folder>

spectrum/pom.xml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,6 @@
4141
<url>https://github.com/giulong/spectrum</url>
4242
</scm>
4343

44-
<distributionManagement>
45-
<snapshotRepository>
46-
<id>ossrh</id>
47-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
48-
</snapshotRepository>
49-
</distributionManagement>
50-
5144
<properties>
5245
<maven.deploy.skip>false</maven.deploy.skip>
5346
<maven.install.skip>false</maven.install.skip>
@@ -368,14 +361,14 @@
368361
</executions>
369362
</plugin>
370363
<plugin>
371-
<groupId>org.sonatype.plugins</groupId>
372-
<artifactId>nexus-staging-maven-plugin</artifactId>
373-
<version>1.7.0</version>
364+
<groupId>org.sonatype.central</groupId>
365+
<artifactId>central-publishing-maven-plugin</artifactId>
366+
<version>0.8.0</version>
374367
<extensions>true</extensions>
375368
<configuration>
376-
<serverId>ossrh</serverId>
377-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
378-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
369+
<publishingServerId>central</publishingServerId>
370+
<autoPublish>true</autoPublish>
371+
<waitUntil>published</waitUntil>
379372
</configuration>
380373
</plugin>
381374
<!-- OSSRH -->

0 commit comments

Comments
 (0)