Skip to content

Commit 5ab5b64

Browse files
authored
---
yaml --- r: 7497 b: refs/heads/tswast-patch-1 c: 23eb620 h: refs/heads/master i: 7495: 0f7cc28
1 parent c184651 commit 5ab5b64

6 files changed

Lines changed: 1697 additions & 36 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: f9bbbd438a754d03ca0b8ee1d0b8722d1bd5d28a
60+
refs/heads/tswast-patch-1: 23eb620b8c752841a0148d9932964116c7e13463
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-examples/pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
<artifactId>maven-assembly-plugin</artifactId>
3333
<version>2.5.4</version>
3434
</dependency>
35+
<dependency>
36+
<groupId>junit</groupId>
37+
<artifactId>junit</artifactId>
38+
<version>4.12</version>
39+
<scope>test</scope>
40+
</dependency>
3541
</dependencies>
3642
<build>
3743
<plugins>
@@ -103,6 +109,34 @@
103109
</programs>
104110
</configuration>
105111
</plugin>
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-failsafe-plugin</artifactId>
115+
<version>2.19.1</version>
116+
<configuration>
117+
<excludes>
118+
<exclude>**/IT*Snippets.java</exclude>
119+
</excludes>
120+
</configuration>
121+
</plugin>
106122
</plugins>
107123
</build>
124+
<profiles>
125+
<profile>
126+
<!-- We use the snippets profile to run snippets ITs -->
127+
<id>snippets</id>
128+
<build>
129+
<plugins>
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-failsafe-plugin</artifactId>
133+
<version>2.19.1</version>
134+
<configuration>
135+
<excludes combine.self="override"></excludes>
136+
</configuration>
137+
</plugin>
138+
</plugins>
139+
</build>
140+
</profile>
141+
</profiles>
108142
</project>

0 commit comments

Comments
 (0)