File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
buildSrc/src/main/groovy/com/mindviewinc/plugins Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
// (c)2017 MindView LLC: see Copyright.txt
3
3
// We make no guarantees that this code is fit for any purpose.
4
4
// Visit http://OnJava8.com for more book information.
5
- // !!!! CI Systems have trouble
5
+ // {ExcludeFromTravisCI}
6
6
import java .util .*;
7
7
8
8
public class ParallelPrefix3 {
Original file line number Diff line number Diff line change @@ -25,7 +25,12 @@ class TaggingPlugin implements Plugin<Project> {
25
25
if (debug && tags. hasTags()) println tags
26
26
27
27
// Exclude java sources that will not compile
28
- if (tags. willNotCompile || (tags. lowLevelAppendix && runningInAppveyor)) {
28
+ if (tags. willNotCompile
29
+ || (tags. lowLevelAppendix && runningInAppveyor) // Exclude entire lowlevel appendix
30
+ || (tags. excludeFromAppveyorCI && runningInAppveyor)
31
+ || (tags. excludeFromTravisCI && runningInTravis)
32
+ || (tags. excludeFromCI && runningInCI)
33
+ ) {
29
34
project. sourceSets. main. java. excludes. add(file. name)
30
35
} else {
31
36
JavaExec javaTask = null
You can’t perform that action at this time.
0 commit comments