-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
213 lines (176 loc) · 6.37 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// ############################################################################
// Plugins & Build Systems
// ############################################################################
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.palominolabs.gradle.task:gradle-git-clone-task:0.0.2'
}
}
// ############################################################################
// System Environment
// ############################################################################
ext.envProperties = System.getenv()
apply from: "$rootDir/libraries.gradle"
// ############################################################################
// Versioning
// ############################################################################
apply from: "$rootDir/gradle/versioning.gradle"
task writeVersionFile << {
def versionfile = new File('version.txt')
vesrionfile.text = "RELEASE_VERSION=" + project.version.toString()
}
// ############################################################################
// Environment
// ############################################################################
def env = project.hasProperty('env') ? project.getProperty('env') : 'local'
def config = new ConfigSlurper(env).parse(file("$rootDir/gradle/config/build.groovy").toURL())
group = config.group
allprojects {
ext.config = config
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}
println '#####################################################################'
println '# Environment: \t' + env
println '# Version: \t' + version
println '# Group: \t' + group
println '# Build Date: \t' + new Date()
println '#####################################################################'
// ############################################################################
// Global Projects definitions
// ############################################################################
allprojects {
// ########################################################################
// Repositories
// ########################################################################
repositories {
maven {
url config.artifactRepository.publicRepo
}
mavenCentral()
}
buildscript {
repositories {
maven {
url config.artifactRepository.publicRepo
}
mavenCentral()
}
}
}
// ############################################################################
// Global Subproject definitions
// ############################################################################
subprojects {
apply plugin: 'eclipse'
apply plugin: 'eclipse-wtp'
apply plugin: 'jacoco'
version = rootProject.version
group = rootProject.group
// ########################################################################
// Reporting
// ########################################################################
jacoco {
toolVersion = "0.7.1.201405082137"
}
task initPackages << {
// extended in subprojects
}
}
// ############################################################################
// Deployment for WAR Projects
// ############################################################################
def webProjects() {
subprojects.findAll { subproject -> subproject.plugins.hasPlugin('war') }
}
gradle.projectsEvaluated {
configure(webProjects()) {
apply from: "$rootDir/gradle/web.gradle"
}
}
// ############################################################################
// Configuration of Java Projects
// ############################################################################
def javaProjects() {
subprojects.findAll { subproject -> subproject.plugins.hasPlugin('java') }
}
gradle.projectsEvaluated {
configure(javaProjects()) {
apply from: "$rootDir/gradle/qa.gradle"
apply from: "$rootDir/gradle/java.gradle"
}
}
// ############################################################################
// Cucumber Acceptance Tests
// ############################################################################
def cucumberProjects() {
subprojects.findAll { subproject -> subproject.plugins.hasPlugin('com.github.samueltbrown.cucumber') }
}
gradle.projectsEvaluated {
configure(cucumberProjects()) {
apply from: "$rootDir/gradle/cucumber.gradle"
}
}
// ############################################################################
// JMeter Tests
// ############################################################################
def jmeterProjects() {
subprojects.findAll { subproject -> subproject.plugins.hasPlugin('jmeter') }
}
gradle.projectsEvaluated {
configure(jmeterProjects()) {
apply from: "$rootDir/gradle/jmeter.gradle"
}
}
// ############################################################################
// Continuous Integration Jobs for Projects
// ############################################################################
def ciProjects() {
subprojects.findAll { subproject -> subproject.plugins.hasPlugin('com.terrafolio.jenkins') }
}
gradle.projectsEvaluated {
configure(ciProjects()) {
apply from: "$rootDir/gradle/jenkins.gradle"
}
}
// ############################################################################
// Initialization
// ############################################################################
task cloneRepo(type: com.palominolabs.gradle.task.git.clone.GitCloneTask) {
description 'Checkout a copy of the project templates from a remote repository'
group 'Initialization'
def destination = file("$rootDir/$config.templates.path")
uri = config.templates.scm
dir = destination
treeish = config.templates.treeish
enabled = !destination.exists() // to clone only once
}
task initProject << {
description 'initializes the root project with the distribution files.'
group 'Initialization'
subprojects.each { p ->
// At least create a build.gradle and the folders for each projects (even for the ones without templates.)
new File("$rootDir/" + p.path.replaceAll(":", "/")).mkdirs()
if (p.getChildProjects().isEmpty()) {
copy {
from "$rootDir/$config.templates.path/skeleton" + p.path.replaceAll(':', '/')
into "$rootDir" + p.path.replaceAll(':', '/')
}
}
}
}
initProject.dependsOn cloneRepo
def createPackages(LinkedHashSet sourceDirectories, String projectName, boolean subPackages) {
sourceDirectories.each {
if (subPackages) {
new File(it.toString() + "/" + rootProject.group.replaceAll('\\.', '/').toLowerCase() + '/' + rootProject.name.toLowerCase() + '/' + projectName).mkdirs()
} else {
it.mkdirs()
}
}
}