Skip to content

Commit dd27e3f

Browse files
authored
Merge pull request #2796 from kubernetes-client/nexus
Update pom.xml to skip release (I hope)
2 parents fb57d24 + f5b3935 commit dd27e3f

File tree

5 files changed

+68
-28
lines changed

5 files changed

+68
-28
lines changed

client-java-contrib/admissionreview/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434

3535
<build>
3636
<plugins>
37+
<plugin>
38+
<groupId>org.sonatype.plugins</groupId>
39+
<artifactId>nexus-staging-maven-plugin</artifactId>
40+
<extensions>true</extensions>
41+
<configuration>
42+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
43+
</configuration>
44+
</plugin>
3745
<plugin>
3846
<groupId>com.diffplug.spotless</groupId>
3947
<artifactId>spotless-maven-plugin</artifactId>

examples/examples-release-16/pom.xml

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<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">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
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">
24
<modelVersion>4.0.0</modelVersion>
35

46
<parent>
@@ -17,16 +19,16 @@
1719
<artifactId>logback-classic</artifactId>
1820
<scope>runtime</scope>
1921
</dependency>
20-
<dependency>
21-
<groupId>io.prometheus</groupId>
22-
<artifactId>simpleclient</artifactId>
23-
<version>0.15.0</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>io.prometheus</groupId>
27-
<artifactId>simpleclient_httpserver</artifactId>
28-
<version>0.15.0</version>
29-
</dependency>
22+
<dependency>
23+
<groupId>io.prometheus</groupId>
24+
<artifactId>simpleclient</artifactId>
25+
<version>0.15.0</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>io.prometheus</groupId>
29+
<artifactId>simpleclient_httpserver</artifactId>
30+
<version>0.15.0</version>
31+
</dependency>
3032
<dependency>
3133
<groupId>io.kubernetes</groupId>
3234
<artifactId>client-java-api</artifactId>
@@ -77,7 +79,8 @@
7779
<artifactId>wiremock</artifactId>
7880
<scope>test</scope>
7981
</dependency>
80-
<!--for spring controller example-->
82+
<!--for
83+
spring controller example-->
8184
<dependency>
8285
<groupId>org.springframework.boot</groupId>
8386
<artifactId>spring-boot-starter-web</artifactId>
@@ -93,6 +96,14 @@
9396

9497
<build>
9598
<plugins>
99+
<plugin>
100+
<groupId>org.sonatype.plugins</groupId>
101+
<artifactId>nexus-staging-maven-plugin</artifactId>
102+
<extensions>true</extensions>
103+
<configuration>
104+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
105+
</configuration>
106+
</plugin>
96107
<plugin>
97108
<groupId>org.apache.maven.plugins</groupId>
98109
<artifactId>maven-deploy-plugin</artifactId>
@@ -104,4 +115,4 @@
104115
</plugins>
105116
</build>
106117

107-
</project>
118+
</project>

examples/examples-release-17/pom.xml

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<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">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
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">
24
<modelVersion>4.0.0</modelVersion>
35

46
<parent>
@@ -17,16 +19,16 @@
1719
<artifactId>logback-classic</artifactId>
1820
<scope>runtime</scope>
1921
</dependency>
20-
<dependency>
21-
<groupId>io.prometheus</groupId>
22-
<artifactId>simpleclient</artifactId>
23-
<version>0.15.0</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>io.prometheus</groupId>
27-
<artifactId>simpleclient_httpserver</artifactId>
28-
<version>0.15.0</version>
29-
</dependency>
22+
<dependency>
23+
<groupId>io.prometheus</groupId>
24+
<artifactId>simpleclient</artifactId>
25+
<version>0.15.0</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>io.prometheus</groupId>
29+
<artifactId>simpleclient_httpserver</artifactId>
30+
<version>0.15.0</version>
31+
</dependency>
3032
<dependency>
3133
<groupId>io.kubernetes</groupId>
3234
<artifactId>client-java-api</artifactId>
@@ -77,7 +79,8 @@
7779
<artifactId>wiremock</artifactId>
7880
<scope>test</scope>
7981
</dependency>
80-
<!--for spring controller example-->
82+
<!--for
83+
spring controller example-->
8184
<dependency>
8285
<groupId>org.springframework.boot</groupId>
8386
<artifactId>spring-boot-starter-web</artifactId>
@@ -93,6 +96,14 @@
9396

9497
<build>
9598
<plugins>
99+
<plugin>
100+
<groupId>org.sonatype.plugins</groupId>
101+
<artifactId>nexus-staging-maven-plugin</artifactId>
102+
<extensions>true</extensions>
103+
<configuration>
104+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
105+
</configuration>
106+
</plugin>
96107
<plugin>
97108
<groupId>org.apache.maven.plugins</groupId>
98109
<artifactId>maven-deploy-plugin</artifactId>
@@ -104,4 +115,4 @@
104115
</plugins>
105116
</build>
106117

107-
</project>
118+
</project>

examples/examples-release-18/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,14 @@
9393

9494
<build>
9595
<plugins>
96+
<plugin>
97+
<groupId>org.sonatype.plugins</groupId>
98+
<artifactId>nexus-staging-maven-plugin</artifactId>
99+
<extensions>true</extensions>
100+
<configuration>
101+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
102+
</configuration>
103+
</plugin>
96104
<plugin>
97105
<groupId>org.apache.maven.plugins</groupId>
98106
<artifactId>maven-deploy-plugin</artifactId>

examples/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46
<parent>
57
<groupId>io.kubernetes</groupId>
@@ -38,4 +40,4 @@
3840
</plugins>
3941
</build>
4042

41-
</project>
43+
</project>

0 commit comments

Comments
 (0)