2017-04-07 20:58:29 +03:00
|
|
|
apply plugin: 'idea'
|
|
|
|
|
2017-04-05 22:07:43 +03:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'idea'
|
2015-12-18 16:20:47 +03:00
|
|
|
|
2017-04-05 22:07:43 +03:00
|
|
|
group = 'inr.numass'
|
|
|
|
version = '1.0.0'
|
2015-12-18 16:20:47 +03:00
|
|
|
|
2017-04-05 22:07:43 +03:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
2015-12-18 16:20:47 +03:00
|
|
|
|
2017-04-05 22:07:43 +03:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
2015-12-18 16:20:47 +03:00
|
|
|
}
|
2017-04-05 22:07:43 +03:00
|
|
|
|
2017-04-09 10:41:41 +03:00
|
|
|
// tasks.withType(JavaCompile) {
|
|
|
|
// options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
|
|
|
|
// }
|
2015-12-18 16:20:47 +03:00
|
|
|
|
|
|
|
dependencies {
|
2017-04-05 22:07:43 +03:00
|
|
|
testCompile 'org.codehaus.groovy:groovy-all:2.4.+'
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.+'
|
|
|
|
testCompile "org.spockframework:spock-core:1.0-groovy-2.+"
|
2015-12-18 16:20:47 +03:00
|
|
|
}
|
2017-04-05 22:07:43 +03:00
|
|
|
|
2015-12-18 16:20:47 +03:00
|
|
|
}
|
2017-04-05 22:07:43 +03:00
|
|
|
|
|
|
|
// id 'project-report'
|
|
|
|
// id 'build-dashboard'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//htmlDependencyReport {
|
|
|
|
// projects = project.allprojects
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2017-06-16 22:00:08 +03:00
|
|
|
gradleVersion = '3.5.0'
|
2017-04-05 22:07:43 +03:00
|
|
|
}
|