numass-framework/build.gradle

32 lines
856 B
Groovy
Raw Normal View History

2017-09-21 20:13:05 +03:00
plugins {
2017-11-14 21:14:15 +03:00
id "org.jetbrains.kotlin.jvm" version "1.1.60" apply false
2017-09-21 20:13:05 +03:00
}
allprojects{
apply plugin: 'idea'
apply plugin: 'java'
2015-12-18 16:20:47 +03:00
group = 'inr.numass'
version = '1.0.0'
2015-12-18 16:20:47 +03:00
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
2015-12-18 16:20:47 +03:00
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "http://dl.bintray.com/kotlin/ktor" }
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
2015-12-18 16:20:47 +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 {
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
}
}