File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ install:
30
30
- ' [ "${TRAVIS_PULL_REQUEST}" = "false" ] && ./gradlew :ui:jfxNative --stacktrace || ./gradlew --stacktrace '
31
31
32
32
script :
33
- - ./gradlew checkstyleMain checkstyleTest pmdMain pmdTest findbugsMain findbugsTest jacocoTestReport jacocoRootReport test --stacktrace -Pheadless=true -PlogTests
33
+ - ./gradlew check jacocoTestReport jacocoRootReport --stacktrace -Pheadless=true -PlogTests
34
34
35
35
after_success :
36
36
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then codecov ; fi
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build_script:
6
6
7
7
# to run your custom scripts instead of automatic tests
8
8
test_script :
9
- - gradlew.bat checkstyleMain checkstyleTest pmdMain pmdTest findbugsMain findbugsTest jacocoTestReport jacocoRootReport test --stacktrace -Pheadless=true -PlogTests
9
+ - gradlew.bat check jacocoTestReport jacocoRootReport --stacktrace -Pheadless=true -PlogTests
10
10
11
11
platform :
12
12
- x64
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ plugins {
21
21
id ' jacoco'
22
22
id ' com.google.osdetector' version ' 1.4.0'
23
23
id ' com.github.johnrengelman.shadow' version ' 1.2.3'
24
+ id " com.dorongold.task-tree" version " 1.2.2"
24
25
}
25
26
apply plugin : ' nebula-aggregate-javadocs'
26
27
@@ -116,14 +117,14 @@ configure(subprojects - project(':ui:linuxLauncher')) {
116
117
117
118
pmd {
118
119
consoleOutput = true
119
- sourceSets = [sourceSets. main]
120
+ sourceSets = [sourceSets. main, sourceSets . test ]
120
121
reportsDir = file(" $project . buildDir /reports/pmd" )
121
122
ruleSetFiles = files(new File (rootDir, " pmd-ruleset.xml" ))
122
123
ruleSets = []
123
124
}
124
125
125
126
findbugs {
126
- sourceSets = [sourceSets. main]
127
+ sourceSets = [sourceSets. main, sourceSets . test ]
127
128
excludeFilter = new File (rootDir, " findBugsSuppressions.xml" )
128
129
effort = " max"
129
130
}
You can’t perform that action at this time.
0 commit comments