Skip to content

Commit 8911867

Browse files
committed
Skip artifact generation and deployment for ITs.
1 parent b469a18 commit 8911867

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

xstream-its/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@
3131
</testResources>
3232
<plugins>
3333
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-deploy-plugin</artifactId>
36+
<configuration>
37+
<skip>true</skip>
38+
</configuration>
39+
</plugin>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
3442
<artifactId>maven-failsafe-plugin</artifactId>
3543
<executions>
3644
<execution>
@@ -41,6 +49,25 @@
4149
</execution>
4250
</executions>
4351
</plugin>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-install-plugin</artifactId>
55+
<configuration>
56+
<skip>true</skip>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-jar-plugin</artifactId>
62+
<executions>
63+
<execution>
64+
<id>default-jar</id>
65+
<configuration>
66+
<skipIfEmpty>true</skipIfEmpty>
67+
</configuration>
68+
</execution>
69+
</executions>
70+
</plugin>
4471
</plugins>
4572
</build>
4673

0 commit comments

Comments
 (0)