File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
2
sudo : false
3
3
install : mvn install -DskipFindBugs=true -DskipTests=true -Dmaven.javadoc.skip=true -B -V
4
- script : mvn clean verify -Dmaven.javadoc.skip=true
4
+ script : mvn clean verify -DexcludeLiveServerTests=true - Dmaven.javadoc.skip=true
5
5
cache :
6
6
directories :
7
7
- $HOME/.m2
Original file line number Diff line number Diff line change 346
346
</plugins >
347
347
</build >
348
348
</profile >
349
+
350
+ <profile >
351
+ <id >travis-verify-skip-unsupported-tests</id >
352
+ <activation >
353
+ <property >
354
+ <name >excludeLiveServerTests</name >
355
+ <value >true</value >
356
+ </property >
357
+ </activation >
358
+ <build >
359
+ <plugins >
360
+ <plugin >
361
+ <groupId >org.apache.maven.plugins</groupId >
362
+ <artifactId >maven-surefire-plugin</artifactId >
363
+ <version >2.19.1</version >
364
+ <configuration >
365
+ <excludes >
366
+ <exclude >**/*LiveTest.java</exclude >
367
+ </excludes >
368
+ </configuration >
369
+ </plugin >
370
+ </plugins >
371
+ </build >
372
+ </profile >
349
373
</profiles >
350
374
</project >
You can’t perform that action at this time.
0 commit comments