This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
126 lines (103 loc) · 3.05 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
repositories {
maven { url 'https://plugins.gradle.org/m2' }
mavenCentral()
jcenter()
}
dependencies {
classpath "com.github.rodm:gradle-teamcity-plugin:0.9.1"
}
}
ext.teamcityVersion = hasProperty('teamcity.version') ? property('teamcity.version') : '10.0.2'
ext.teamcityDir = hasProperty('teamcity.dir') ? property('teamcity.dir') : "$rootDir/teamcity/app"
ext.teamcityDataDir = "$rootDir/teamcity/data"
ext.teamcityJavaHome = System.properties['java.home']
ext.awsSDKVersion = hasProperty('aws.sdk.version') ? property('aws.sdk.version') : '1.11.200'
ext.javaVersion = hasProperty('plugin.java.version') ? property('plugin.java.version') : '1.7'
apply plugin: 'idea'
idea {
project {
vcs = 'Git'
}
}
subprojects {
group = 'jetbrains.buildServer.elasticbeanstalk'
}
configure(allprojects - project(':build')) {
apply plugin: 'jacoco'
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "http://repo1.maven.org/maven2/" }
maven { url = 'http://repository.jetbrains.com/all' }
}
}
// Only report code coverage for certain projects
def coveredProjects = (subprojects - project(':build'))
configure(coveredProjects) {
apply plugin: 'java'
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
test {
useTestNG()
testLogging.showStandardStreams = true
}
}
task codeCoverageReport(type: JacocoReport) {
executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
coveredProjects.each {
sourceSets it.sourceSets.main
}
reports {
xml.enabled true
xml.destination "${buildDir}/reports/jacoco/report.xml"
html.enabled false
csv.enabled false
}
}
codeCoverageReport.dependsOn {
coveredProjects*.test
}
configurations { codacy }
repositories {
maven { url "https://jitpack.io" }
maven { url "http://dl.bintray.com/typesafe/maven-releases" }
maven { url 'https://plugins.gradle.org/m2' }
mavenCentral()
jcenter()
}
dependencies {
codacy 'com.github.codacy:codacy-coverage-reporter:1.0.13'
}
task codacy(type: JavaExec, dependsOn: codeCoverageReport) {
group = 'Coverage reports'
description = 'Uploads the aggregated coverage report to Codacy'
onlyIf { System.env.'CI' }
main = "com.codacy.CodacyCoverageReporter"
classpath = configurations.codacy
args = [
"-l",
"Java",
"-r",
"${buildDir}/reports/jacoco/report.xml"
]
}