Skip to content

Commit ee1b30d

Browse files
authored
Fixing release, skipping sb examples. (#1247)
* fixing deploy skip Signed-off-by: salaboy <[email protected]> * skiping examples from release Signed-off-by: salaboy <[email protected]> --------- Signed-off-by: salaboy <[email protected]>
1 parent 643f630 commit ee1b30d

File tree

3 files changed

+64
-9
lines changed

3 files changed

+64
-9
lines changed

spring-boot-examples/consumer-app/pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,22 @@
9292
<skip>true</skip>
9393
</configuration>
9494
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-deploy-plugin</artifactId>
98+
<version>${maven-deploy-plugin.version}</version>
99+
<configuration>
100+
<skip>true</skip>
101+
</configuration>
102+
</plugin>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-checkstyle-plugin</artifactId>
106+
<configuration>
107+
<!-- Skip checkstyle for auto-generated code -->
108+
<skip>true</skip>
109+
</configuration>
110+
</plugin>
95111
</plugins>
96112
</build>
97113

spring-boot-examples/pom.xml

+24-9
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,15 @@
2323
</modules>
2424

2525
<build>
26-
<pluginManagement>
27-
<plugins>
28-
<plugin>
29-
<groupId>org.springframework.boot</groupId>
30-
<artifactId>spring-boot-maven-plugin</artifactId>
31-
<version>${springboot.version}</version>
32-
</plugin>
33-
</plugins>
34-
</pluginManagement>
3526
<plugins>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-deploy-plugin</artifactId>
30+
<version>${maven-deploy-plugin.version}</version>
31+
<configuration>
32+
<skip>true</skip>
33+
</configuration>
34+
</plugin>
3635
<plugin>
3736
<groupId>org.apache.maven.plugins</groupId>
3837
<artifactId>maven-site-plugin</artifactId>
@@ -41,6 +40,22 @@
4140
<skip>true</skip>
4241
</configuration>
4342
</plugin>
43+
<plugin>
44+
<groupId>org.apache.maven.plugins</groupId>
45+
<artifactId>maven-deploy-plugin</artifactId>
46+
<version>${maven-deploy-plugin.version}</version>
47+
<configuration>
48+
<skip>true</skip>
49+
</configuration>
50+
</plugin>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-checkstyle-plugin</artifactId>
54+
<configuration>
55+
<!-- Skip checkstyle for auto-generated code -->
56+
<skip>true</skip>
57+
</configuration>
58+
</plugin>
4459
</plugins>
4560
</build>
4661
</project>

spring-boot-examples/producer-app/pom.xml

+24
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@
7777
<groupId>org.springframework.boot</groupId>
7878
<artifactId>spring-boot-maven-plugin</artifactId>
7979
</plugin>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-deploy-plugin</artifactId>
83+
<version>${maven-deploy-plugin.version}</version>
84+
<configuration>
85+
<skip>true</skip>
86+
</configuration>
87+
</plugin>
8088
<plugin>
8189
<groupId>org.apache.maven.plugins</groupId>
8290
<artifactId>maven-site-plugin</artifactId>
@@ -85,6 +93,22 @@
8593
<skip>true</skip>
8694
</configuration>
8795
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-checkstyle-plugin</artifactId>
99+
<configuration>
100+
<!-- Skip checkstyle for auto-generated code -->
101+
<skip>true</skip>
102+
</configuration>
103+
</plugin>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-deploy-plugin</artifactId>
107+
<version>${maven-deploy-plugin.version}</version>
108+
<configuration>
109+
<skip>true</skip>
110+
</configuration>
111+
</plugin>
88112
</plugins>
89113
</build>
90114
</project>

0 commit comments

Comments
 (0)