Skip to content

Commit 2e2f243

Browse files
committed
3.1.0
1 parent 0f34dee commit 2e2f243

2 files changed

Lines changed: 16 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# spring-boot-starter-celesta
22

33
[![build](https://github.com/CourseOrchestra/spring-boot-starter-celesta/actions/workflows/main.yml/badge.svg)](https://github.com/CourseOrchestra/spring-boot-starter-celesta/actions/workflows/main.yml)
4-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/ru.curs/spring-boot-starter-celesta/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ru.curs/spring-boot-starter-celesta)
4+
[![Maven Central](https://img.shields.io/maven-central/v/ru.curs/spring-boot-starter-celesta)](https://central.sonatype.com/artifact/ru.curs/spring-boot-starter-celesta)
55

66
Spring Boot starter that auto-configures [Celesta](https://courseorchestra.github.io/celesta/en/)
77
inside a Spring Boot application.

pom.xml

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>ru.curs</groupId>
66
<artifactId>spring-boot-starter-celesta</artifactId>
7-
<version>3.1.0-SNAPSHOT</version>
7+
<version>3.1.0</version>
88
<name>spring-boot-starter-celesta</name>
99
<description>Celesta integration with Spring Boot</description>
1010
<packaging>jar</packaging>
@@ -59,15 +59,10 @@
5959
<maven.site.plugin.version>3.21.0</maven.site.plugin.version>
6060
<maven.source.plugin.version>3.3.1</maven.source.plugin.version>
6161
<maven.surefire.plugin.version>3.5.6</maven.surefire.plugin.version>
62+
<maven.gpg.plugin.version>3.2.8</maven.gpg.plugin.version>
63+
<central.publishing.maven.plugin.version>0.10.0</central.publishing.maven.plugin.version>
6264
</properties>
6365

64-
<distributionManagement>
65-
<repository>
66-
<id>ossrh</id>
67-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
68-
</repository>
69-
</distributionManagement>
70-
7166
<dependencyManagement>
7267
<dependencies>
7368
<dependency>
@@ -204,6 +199,7 @@
204199
<attach>true</attach>
205200
<maxmemory>1024m</maxmemory>
206201
<failOnError>true</failOnError>
202+
<doclint>none</doclint>
207203
</configuration>
208204
<executions>
209205
<execution>
@@ -325,18 +321,19 @@
325321
<plugins>
326322
<plugin>
327323
<groupId>org.apache.maven.plugins</groupId>
328-
<artifactId>maven-javadoc-plugin</artifactId>
324+
<artifactId>maven-source-plugin</artifactId>
329325
</plugin>
330326
<plugin>
331327
<groupId>org.apache.maven.plugins</groupId>
332-
<artifactId>maven-source-plugin</artifactId>
328+
<artifactId>maven-javadoc-plugin</artifactId>
333329
</plugin>
334330
<plugin>
335331
<groupId>org.apache.maven.plugins</groupId>
336332
<artifactId>maven-gpg-plugin</artifactId>
337-
<version>3.2.7</version>
333+
<version>${maven.gpg.plugin.version}</version>
338334
<executions>
339335
<execution>
336+
<id>sign-artifacts</id>
340337
<phase>verify</phase>
341338
<goals>
342339
<goal>sign</goal>
@@ -345,14 +342,15 @@
345342
</executions>
346343
</plugin>
347344
<plugin>
348-
<groupId>org.sonatype.plugins</groupId>
349-
<artifactId>nexus-staging-maven-plugin</artifactId>
350-
<version>1.7.0</version>
345+
<groupId>org.sonatype.central</groupId>
346+
<artifactId>central-publishing-maven-plugin</artifactId>
347+
<version>${central.publishing.maven.plugin.version}</version>
351348
<extensions>true</extensions>
352349
<configuration>
353-
<serverId>ossrh</serverId>
354-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
355-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
350+
<publishingServerId>central</publishingServerId>
351+
<deploymentName>spring-boot-starter-celesta-${project.version}</deploymentName>
352+
<autoPublish>true</autoPublish>
353+
<waitUntil>validated</waitUntil>
356354
</configuration>
357355
</plugin>
358356
</plugins>

0 commit comments

Comments
 (0)