15
15
*/
16
16
17
17
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
+ }
26
26
}
27
27
28
-
29
28
ext. teamcityVersion = hasProperty(' teamcity.version' ) ? property(' teamcity.version' ) : ' 10.0.2'
30
29
31
30
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')
36
35
37
36
ext. javaVersion = hasProperty(' plugin.java.version' ) ? property(' plugin.java.version' ) : ' 1.7'
38
37
39
-
40
38
apply plugin : ' idea'
41
39
idea {
42
- project {
43
- vcs = ' Git'
44
- }
40
+ project {
41
+ vcs = ' Git'
42
+ }
45
43
}
46
44
47
45
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
+
49
60
}
50
61
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
53
70
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
+ }
56
80
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" )
60
83
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
+ }
65
113
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
+ ]
72
126
}
0 commit comments