Skip to content

Commit 9ddeefd

Browse files
committed
v0.0.12.
1 parent 9d1750e commit 9ddeefd

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
1818

1919
### Security
2020

21+
## [0.0.12] - 2021-04-10
22+
23+
### Fixed
24+
25+
- Updated `build.gradle`. Fixed `coverallsJacoco`.
26+
2127
## [0.0.11] - 2021-04-10
2228

2329
### Changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-cse-framework",
33
"displayName": "cse-framework",
44
"description": "VSCode extension for cse repositories - provides templates, snippets, etc.",
5-
"version": "0.0.11",
5+
"version": "0.0.12",
66
"publisher": "manas-talukdar",
77
"license": "MIT",
88
"repository": {

static-to-copy/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -147,19 +147,19 @@ afterEvaluate {
147147
}
148148

149149
check.dependsOn jacocoJupTestReport
150+
151+
coverallsJacoco {
152+
def jacocoJupTestReportTask = project.tasks.getByName('jacocoJupTestReport')
153+
reportPath = "${buildDir}/reports/jacoco/report.xml"
154+
reportSourceSets = files(jacocoJupTestReportTask.sourceDirectories.collect{ it.listFiles() }.flatten())
155+
}
150156
}
151157

152158
// https://github.com/ben-manes/caffeine/blob/master/build.gradle
153159
coveralls {
154160
jacocoReportPath = "${buildDir}/reports/jacoco/report.xml"
155161
}
156162

157-
coverallsJacoco {
158-
def jacocoJupTestReportTask = project.tasks.getByName('jacocoJupTestReport')
159-
reportPath = "${buildDir}/reports/jacoco/report.xml"
160-
reportSourceSets = files(jacocoJupTestReportTask.sourceDirectories.collect{ it.listFiles() }.flatten())
161-
}
162-
163163
// https://github.com/codeclimate/test-reporter/issues/243
164164
// task jacocoFixForCodeClimate(type: Copy) {
165165
// from 'build/reports/jacoco/report.xml'
@@ -208,4 +208,4 @@ tasks.withType(Test) {
208208
}
209209
}
210210
}
211-
}
211+
}

0 commit comments

Comments
 (0)