Skip to content

Commit 247502a

Browse files
authored
do we need this? (dapr#1234)
Signed-off-by: salaboy <[email protected]>
1 parent d6c14de commit 247502a

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

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

+16
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,22 @@
9393
<groupId>org.springframework.boot</groupId>
9494
<artifactId>spring-boot-maven-plugin</artifactId>
9595
</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>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-site-plugin</artifactId>
107+
<version>3.12.1</version>
108+
<configuration>
109+
<skip>true</skip>
110+
</configuration>
111+
</plugin>
96112
</plugins>
97113
</build>
98114

spring-boot-examples/pom.xml

+20
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,24 @@
1818
<module>consumer-app</module>
1919
</modules>
2020

21+
<build>
22+
<plugins>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-deploy-plugin</artifactId>
26+
<version>${maven-deploy-plugin.version}</version>
27+
<configuration>
28+
<skip>true</skip>
29+
</configuration>
30+
</plugin>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-site-plugin</artifactId>
34+
<version>3.12.1</version>
35+
<configuration>
36+
<skip>true</skip>
37+
</configuration>
38+
</plugin>
39+
</plugins>
40+
</build>
2141
</project>

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

+16
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,22 @@
8080
<groupId>org.springframework.boot</groupId>
8181
<artifactId>spring-boot-maven-plugin</artifactId>
8282
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-deploy-plugin</artifactId>
86+
<version>${maven-deploy-plugin.version}</version>
87+
<configuration>
88+
<skip>true</skip>
89+
</configuration>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-site-plugin</artifactId>
94+
<version>3.12.1</version>
95+
<configuration>
96+
<skip>true</skip>
97+
</configuration>
98+
</plugin>
8399
</plugins>
84100
</build>
85101
</project>

0 commit comments

Comments
 (0)