Skip to content

Commit 3e96cd7

Browse files
authored
---
yaml --- r: 5023 b: refs/heads/master c: 23eb620 h: refs/heads/master i: 5021: 3b94d13 5019: 56cf6dc 5015: d5595dc 5007: 6f3d9f9 4991: a320e6f
1 parent cdbf205 commit 3e96cd7

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: f9bbbd438a754d03ca0b8ee1d0b8722d1bd5d28a
2+
refs/heads/master: 23eb620b8c752841a0148d9932964116c7e13463
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 7406918e071dd2c5677a638ae2a06e7592b6542c
55
refs/heads/pubsub-alpha: d6bbd32eed6cb48cda8d6798ee70ddd6bfc1f07d

trunk/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)