-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
222 lines (185 loc) · 5.55 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
214
215
216
217
218
219
220
221
222
// SETUP BUILDSCRIPT ///////////////////////////////////////////////////////////
buildscript {
repositories {
jcenter()
maven {
url 'https://plugins.gradle.org/m2/'
}
maven {
url "${artifactory_url}/plugins-release"
credentials {
username artifactory_user
password artifactory_password
}
}
}
dependencies {
classpath 'org.xtext:xtext-gradle-plugin:1.0.17'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14'
}
// CONFIGURE ALL SUBPROJECTS ///////////////////////////////////////////////////
subprojects {
apply plugin: 'eclipse'
apply plugin: 'nebula.provided-base'
apply plugin: 'java'
apply plugin: 'org.xtext.xtend'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
eclipse.project.name = rootProject.name + '-' + project.name
tasks.eclipse.dependsOn(cleanEclipse)
xtend { preferences = [ 'useJavaCompilerCompliance':true ] }
repositories {
mavenLocal()
mavenCentral()
maven {
url "${artifactory_url}/main"
credentials {
username artifactory_user
password artifactory_password
}
}
}
configurations {
quasar
}
dependencies {
quasar "co.paralleluniverse:quasar-core:${quasarVersion}@jar"
provided "co.paralleluniverse:quasar-core:${quasarVersion}"
compile "org.eclipse.xtend:org.eclipse.xtend.lib:${xtendVersion}"
testCompile "junit:junit:${junitVersion}"
}
task sourcesJar( type: Jar, dependsOn: classes ) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar( type: Jar, dependsOn: javadoc ) {
classifier = 'javadoc'
from javadoc.destinationDir
}
tasks.withType( Javadoc ) {
if ( JavaVersion.current().isJava8Compatible() ) {
options.addStringOption( 'Xdoclint:none', '-quiet' )
}
}
test {
testLogging {
error {
showStackTraces true
exceptionFormat "full"
}
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
tasks.withType(Test) {
// jvmArgs "-javaagent:${configurations.quasar.singleFile}=b" // =v, =d =b
// jvmArgs "-Dco.paralleluniverse.fibers.verifyInstrumentation=true"
// jvmArgs "-Dco.paralleluniverse.fibers.allowJdkInstrumentation=true"
}
compileJava.doLast {
scanAndInstrument(sourceSets.main, [configurations.provided, configurations.runtime])
}
task install( dependsOn: publishToMavenLocal )
jar {
baseName rootProject.name + '-' + project.name
}
jacoco {
toolVersion = '0.7.6.201602180812'
}
jacocoTestReport {
group = "Reporting"
description = "Generate Jacoco coverage reports after running tests."
reports.html.enabled true
}
publishing {
publications {
mavenJava( MavenPublication ) {
artifactId rootProject.name + '-' + project.name
from components.java
artifact sourcesJar
artifact javadocJar
pom.withXml {
asNode().dependencies.'*'.each() {
it.scope*.value = 'compile'
}
}
}
}
repositories {
maven {
url "${artifactory_url}/main-local"
credentials {
username artifactory_user
password artifactory_password
}
}
}
}
}
project('annotations') {
dependencies {
compile 'com.kimengi.util:xtend-tools-core:latest.release'
}
}
project('core') {
dependencies {
compile project(':annotations')
testCompile 'com.kimengi.util:xtend-tools-test:latest.release'
}
}
project('event') {
dependencies {
compile project(':core')
}
}
project('rx') {
dependencies {
compile project(':core')
compile 'io.reactivex:rxjava:1.1.3'
testCompile 'com.kimengi.util:xtend-tools-test:latest.release'
}
}
project('collections') {
dependencies {
compile project(':core')
compile project(':event')
testCompile 'com.kimengi.util:xtend-tools-test:latest.release'
}
}
project( 'fibers' ) {
dependencies {
compile project( ':core' )
compile 'com.kimengi.util:xtend-tools-annotations:latest.release'
testCompile 'com.kimengi.util:xtend-tools-test:latest.release'
}
compileTestJava.doLast {
scanAndInstrument(sourceSets.test, [configurations.provided, configurations.runtime])
}
// tasks.withType(Test) {
// jvmArgs "-javaagent:${configurations.quasar.singleFile}" // =v, =d
// jvmArgs "-Dco.paralleluniverse.fibers.verifyInstrumentation=true"
// jvmArgs "-Dco.paralleluniverse.fibers.allowJdkInstrumentation=true"
// }
task serviceAgent {
description 'Prints the Eclipse VM parameters necessary to run JUnit tests'
doLast {
println "-javaagent:${configurations.quasar.asPath}=vx(io.vertx.ext.unit.impl)"
}
}
}
// scan and instrument java files for suspendable code (for quasar fiber support)
def scanAndInstrument(sourceSet, configurations) {
def cp = '' + sourceSet.output.classesDir + ':' + sourceSet.output.resourcesDir + ':' + configurations*.asPath.join(':')
ant.taskdef(name:'instrumentation', classname:'co.paralleluniverse.fibers.instrument.InstrumentationTask', classpath: cp)
ant.instrumentation(verbose:'true', check:'true', debug:'false') {
fileset(dir: sourceSet.output.classesDir) {
exclude(name: 'co/paralleluniverse/fibers/instrument/*.class')
exclude(name: 'io/vertx/ext/unit/impl/*.class')
}
}
}