2017-08-16 08:10:03 +05:30
|
|
|
allprojects {
|
2018-03-14 09:14:02 +05:30
|
|
|
apply plugin: 'java-library'
|
2017-08-16 08:10:03 +05:30
|
|
|
sourceCompatibility = 1.7
|
|
|
|
targetCompatibility = 1.7
|
|
|
|
|
2018-03-14 09:14:02 +05:30
|
|
|
version 'v0.12.0'
|
2017-08-05 13:33:56 +05:30
|
|
|
|
2018-03-14 09:14:02 +05:30
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
2017-08-05 13:33:56 +05:30
|
|
|
}
|
|
|
|
|
2018-03-14 09:14:02 +05:30
|
|
|
subprojects {
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
classifier = 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
2017-08-09 18:55:02 +05:30
|
|
|
|
2018-03-14 09:14:02 +05:30
|
|
|
tasks.withType(Test) {
|
|
|
|
testLogging {
|
|
|
|
events "skipped", "failed"
|
|
|
|
showStandardStreams = true
|
|
|
|
exceptionFormat = 'full'
|
|
|
|
}
|
|
|
|
}
|
2017-11-30 15:06:49 +05:30
|
|
|
|
2018-03-14 09:14:02 +05:30
|
|
|
artifacts {
|
|
|
|
archives sourcesJar
|
2017-11-30 15:06:49 +05:30
|
|
|
}
|
2018-03-14 09:14:02 +05:30
|
|
|
}
|
|
|
|
|