File tree Expand file tree Collapse file tree
main/java/com/google/cloud/examples/storage/snippets
test/java/com/google/cloud/examples/storage/snippets
gcloud-java-storage/src/main/java/com/google/cloud/storage Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60- refs/heads/tswast-patch-1: f9bbbd438a754d03ca0b8ee1d0b8722d1bd5d28a
60+ refs/heads/tswast-patch-1: 23eb620b8c752841a0148d9932964116c7e13463
6161refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b
Original file line number Diff line number Diff line change 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 >
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 >
You can’t perform that action at this time.
0 commit comments