Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit 9fe9cb6

Browse files
authored
Merge pull request #10 from rtfpessoa/start-tracking-coverage
Start tracking coverage using Codacy
2 parents 93fc19f + 10383bc commit 9fe9cb6

File tree

1 file changed

+85
-31
lines changed

1 file changed

+85
-31
lines changed

build.gradle

+85-31
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,16 @@
1515
*/
1616

1717
buildscript {
18-
repositories {
19-
maven {
20-
url "https://plugins.gradle.org/m2/"
21-
}
22-
}
23-
dependencies {
24-
classpath "com.github.rodm:gradle-teamcity-plugin:0.9.1"
25-
}
18+
repositories {
19+
maven { url 'https://plugins.gradle.org/m2' }
20+
mavenCentral()
21+
jcenter()
22+
}
23+
dependencies {
24+
classpath "com.github.rodm:gradle-teamcity-plugin:0.9.1"
25+
}
2626
}
2727

28-
2928
ext.teamcityVersion = hasProperty('teamcity.version') ? property('teamcity.version') : '10.0.2'
3029

3130
ext.teamcityDir = hasProperty('teamcity.dir') ? property('teamcity.dir') : "$rootDir/teamcity/app"
@@ -36,37 +35,92 @@ ext.awsSDKVersion = hasProperty('aws.sdk.version') ? property('aws.sdk.version')
3635

3736
ext.javaVersion = hasProperty('plugin.java.version') ? property('plugin.java.version') : '1.7'
3837

39-
4038
apply plugin: 'idea'
4139
idea {
42-
project {
43-
vcs = 'Git'
44-
}
40+
project {
41+
vcs = 'Git'
42+
}
4543
}
4644

4745
subprojects {
48-
group = 'jetbrains.buildServer.elasticbeanstalk'
46+
group = 'jetbrains.buildServer.elasticbeanstalk'
47+
}
48+
49+
configure(allprojects - project(':build')) {
50+
apply plugin: 'jacoco'
51+
52+
repositories {
53+
mavenLocal()
54+
mavenCentral()
55+
jcenter()
56+
maven { url "http://repo1.maven.org/maven2/" }
57+
maven { url = 'http://repository.jetbrains.com/all' }
58+
}
59+
4960
}
5061

51-
configure(subprojects - project(':build')) {
52-
apply plugin: 'java'
62+
// Only report code coverage for certain projects
63+
def coveredProjects = (subprojects - project(':build'))
64+
65+
configure(coveredProjects) {
66+
apply plugin: 'java'
67+
68+
sourceCompatibility = javaVersion
69+
targetCompatibility = javaVersion
5370

54-
sourceCompatibility = javaVersion
55-
targetCompatibility = javaVersion
71+
tasks.withType(JavaCompile) {
72+
options.encoding = 'UTF-8'
73+
}
74+
75+
test {
76+
useTestNG()
77+
testLogging.showStandardStreams = true
78+
}
79+
}
5680

57-
tasks.withType(JavaCompile) {
58-
options.encoding = 'UTF-8'
59-
}
81+
task codeCoverageReport(type: JacocoReport) {
82+
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
6083

61-
test {
62-
useTestNG()
63-
testLogging.showStandardStreams = true
64-
}
84+
coveredProjects.each {
85+
sourceSets it.sourceSets.main
86+
}
87+
88+
reports {
89+
xml.enabled true
90+
xml.destination "${buildDir}/reports/jacoco/report.xml"
91+
html.enabled false
92+
csv.enabled false
93+
}
94+
}
95+
96+
codeCoverageReport.dependsOn {
97+
coveredProjects*.test
98+
}
99+
100+
configurations { codacy }
101+
102+
repositories {
103+
maven { url "https://jitpack.io" }
104+
maven { url "http://dl.bintray.com/typesafe/maven-releases" }
105+
maven { url 'https://plugins.gradle.org/m2' }
106+
mavenCentral()
107+
jcenter()
108+
}
109+
110+
dependencies {
111+
codacy 'com.github.codacy:codacy-coverage-reporter:1.0.13'
112+
}
65113

66-
repositories {
67-
mavenCentral()
68-
maven {
69-
url = 'http://repository.jetbrains.com/all'
70-
}
71-
}
114+
task codacy(type: JavaExec, dependsOn: codeCoverageReport) {
115+
group = 'Coverage reports'
116+
description = 'Uploads the aggregated coverage report to Codacy'
117+
onlyIf { System.env.'CI' }
118+
main = "com.codacy.CodacyCoverageReporter"
119+
classpath = configurations.codacy
120+
args = [
121+
"-l",
122+
"Java",
123+
"-r",
124+
"${buildDir}/reports/jacoco/report.xml"
125+
]
72126
}

0 commit comments

Comments
 (0)