Skip to content

Commit fec4047

Browse files
committed
Upgrading to bootique-module-parents:3.0.27 and the new Maven repo
1 parent 599fba2 commit fec4047

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

.github/workflows/maven_settings.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
22
<servers>
33
<server>
4-
<id>oss-sonatype-releases</id>
5-
<username>${env.MAVEN_USERNAME}</username>
6-
<password>${env.MAVEN_PASSWORD}</password>
7-
</server>
8-
<server>
9-
<id>oss-sonatype-snapshots</id>
4+
<id>sonatype-central</id>
105
<username>${env.MAVEN_USERNAME}</username>
116
<password>${env.MAVEN_PASSWORD}</password>
127
</server>

bootique-logback-docs/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,6 @@
7373

7474
<build>
7575
<plugins>
76-
<plugin>
77-
<groupId>org.sonatype.plugins</groupId>
78-
<artifactId>nexus-staging-maven-plugin</artifactId>
79-
<configuration>
80-
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
81-
</configuration>
82-
</plugin>
8376
<plugin>
8477
<groupId>org.asciidoctor</groupId>
8578
<artifactId>asciidoctor-maven-plugin</artifactId>

pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.bootique.modules.parent</groupId>
2525
<artifactId>bootique-modules-parent</artifactId>
26-
<version>3.0.26</version>
26+
<version>3.0.27</version>
2727
</parent>
2828

2929
<groupId>io.bootique.logback</groupId>
@@ -120,18 +120,19 @@
120120
</dependency>
121121
</dependencies>
122122
</dependencyManagement>
123-
124123
<build>
125124
<plugins>
126125
<plugin>
127-
<groupId>org.sonatype.plugins</groupId>
128-
<artifactId>nexus-staging-maven-plugin</artifactId>
126+
<groupId>org.sonatype.central</groupId>
127+
<artifactId>central-publishing-maven-plugin</artifactId>
128+
<extensions>true</extensions>
129129
<configuration>
130-
<!-- Deploy every module independently to be able to skip deployment for some of them -->
131-
<skipLocalStaging>true</skipLocalStaging>
130+
<publishingServerId>sonatype-central</publishingServerId>
131+
<excludeArtifacts>
132+
<excludeArtifact>bootique-logback-docs</excludeArtifact>
133+
</excludeArtifacts>
132134
</configuration>
133135
</plugin>
134136
</plugins>
135137
</build>
136-
137138
</project>

0 commit comments

Comments
 (0)