Skip to content

Commit fb11090

Browse files
committed
Fixed broken circle ci build
resolves #29
1 parent f8dc959 commit fb11090

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
mkdir -p ~/junit/
4242
mkdir -p ~/reports/
4343
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \;
44-
cp -R swagger-grails-contract-tests/build/reports/tests ~/reports
44+
cp -R springfox-grails-contract-tests/build/reports/tests ~/reports
4545
when: always
4646
- store_test_results:
4747
path: ~/junit

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ allprojects {
2222
guava = "20.0"
2323
grails = "3.2.4"
2424
htmlUnit = "2.29"
25+
jacocoVersion = '0.8.1'
2526
jackson = '2.7.7'
2627
joda = "2.9.4"
2728
jsonPath = "2.4.0"

springfox-grails/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,19 @@ jar {
9898
}
9999
}
100100

101+
jacoco {
102+
toolVersion = "$jacocoVersion"
103+
}
104+
101105
jacocoTestReport {
102106
reports {
103107
xml.enabled true
104-
html.enabled false
108+
html.enabled true
105109
}
106110
}
107111

112+
test {
113+
jvmArgs "-Dorg.spockframework.mock.ignoreByteBuddy=true"
114+
}
115+
108116

0 commit comments

Comments
 (0)