Skip to content

Commit 8c5161c

Browse files
committed
Upgrading to bootique-module-parents:3.0.27 and the new Maven repo
1 parent c32e835 commit 8c5161c

File tree

6 files changed

+12
-67
lines changed

6 files changed

+12
-67
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-bom-tests-all/pom.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -329,19 +329,6 @@
329329
</dependency>
330330
</dependencies>
331331

332-
<build>
333-
<pluginManagement>
334-
<plugins>
335-
<plugin>
336-
<groupId>org.sonatype.plugins</groupId>
337-
<artifactId>nexus-staging-maven-plugin</artifactId>
338-
<configuration>
339-
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
340-
</configuration>
341-
</plugin>
342-
</plugins>
343-
</pluginManagement>
344-
</build>
345332
<profiles>
346333
<profile>
347334
<id>rat</id>

bootique-bom-tests/bootique-test-jdbc/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,6 @@
5050
</dependency>
5151
</dependencies>
5252

53-
<build>
54-
<pluginManagement>
55-
<plugins>
56-
<plugin>
57-
<groupId>org.sonatype.plugins</groupId>
58-
<artifactId>nexus-staging-maven-plugin</artifactId>
59-
<configuration>
60-
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
61-
</configuration>
62-
</plugin>
63-
</plugins>
64-
</pluginManagement>
65-
</build>
66-
6753
<profiles>
6854
<profile>
6955
<id>rat</id>

bootique-bom-tests/bootique-test-swagger/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,6 @@
5050
</dependency>
5151
</dependencies>
5252

53-
<build>
54-
<pluginManagement>
55-
<plugins>
56-
<plugin>
57-
<groupId>org.sonatype.plugins</groupId>
58-
<artifactId>nexus-staging-maven-plugin</artifactId>
59-
<configuration>
60-
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
61-
</configuration>
62-
</plugin>
63-
</plugins>
64-
</pluginManagement>
65-
</build>
66-
6753
<profiles>
6854
<profile>
6955
<id>rat</id>

bootique-bom-tests/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,4 @@
5151
</dependency>
5252
</dependencies>
5353
</dependencyManagement>
54-
55-
<build>
56-
<pluginManagement>
57-
<plugins>
58-
<plugin>
59-
<groupId>org.sonatype.plugins</groupId>
60-
<artifactId>nexus-staging-maven-plugin</artifactId>
61-
<configuration>
62-
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
63-
</configuration>
64-
</plugin>
65-
</plugins>
66-
</pluginManagement>
67-
</build>
6854
</project>

pom.xml

Lines changed: 11 additions & 6 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
<groupId>io.bootique.bom</groupId>
2929
<artifactId>bootique-bom-parent</artifactId>
@@ -53,15 +53,20 @@
5353
<url>https://github.com/bootique/bootique-bom</url>
5454
<tag>HEAD</tag>
5555
</scm>
56-
5756
<build>
5857
<plugins>
5958
<plugin>
60-
<groupId>org.sonatype.plugins</groupId>
61-
<artifactId>nexus-staging-maven-plugin</artifactId>
59+
<groupId>org.sonatype.central</groupId>
60+
<artifactId>central-publishing-maven-plugin</artifactId>
61+
<extensions>true</extensions>
6262
<configuration>
63-
<!-- Deploy every module independently to be able to skip deployment for some of them -->
64-
<skipLocalStaging>true</skipLocalStaging>
63+
<publishingServerId>sonatype-central</publishingServerId>
64+
<excludeArtifacts>
65+
<excludeArtifact>bootique-bom-tests</excludeArtifact>
66+
<excludeArtifact>bootique-bom-tests-all</excludeArtifact>
67+
<excludeArtifact>bootique-test-jdbc</excludeArtifact>
68+
<excludeArtifact>bootique-test-swagger</excludeArtifact>
69+
</excludeArtifacts>
6570
</configuration>
6671
</plugin>
6772
</plugins>

0 commit comments

Comments
 (0)