Skip to content

Commit 641b34a

Browse files
authored
fixing deploy skip (#1246)
Signed-off-by: salaboy <[email protected]>
1 parent ff917ac commit 641b34a

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
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

+16
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,22 @@
4141
<skip>true</skip>
4242
</configuration>
4343
</plugin>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-deploy-plugin</artifactId>
47+
<version>${maven-deploy-plugin.version}</version>
48+
<configuration>
49+
<skip>true</skip>
50+
</configuration>
51+
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-checkstyle-plugin</artifactId>
55+
<configuration>
56+
<!-- Skip checkstyle for auto-generated code -->
57+
<skip>true</skip>
58+
</configuration>
59+
</plugin>
4460
</plugins>
4561
</build>
4662
</project>

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

+16
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,22 @@
8585
<skip>true</skip>
8686
</configuration>
8787
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-checkstyle-plugin</artifactId>
91+
<configuration>
92+
<!-- Skip checkstyle for auto-generated code -->
93+
<skip>true</skip>
94+
</configuration>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-deploy-plugin</artifactId>
99+
<version>${maven-deploy-plugin.version}</version>
100+
<configuration>
101+
<skip>true</skip>
102+
</configuration>
103+
</plugin>
88104
</plugins>
89105
</build>
90106
</project>

0 commit comments

Comments
 (0)