1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-line-count.git synced 2025-04-25 03:07:11 -07:00
kobalt-line-count/build.gradle
Cedric Beust 7780a54ffb 0.174.
2015-10-11 19:28:23 -07:00

30 lines
661 B
Groovy

buildscript {
ext.kotlin_version = '0.14.449'
repositories {
jcenter()
mavenCentral()
maven {
url "https://dl.bintray.com/cbeust/maven"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"
classpath "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
}
}
repositories {
jcenter()
mavenCentral()
maven { url 'http://dl.bintray.com/cbeust/maven' }
}
apply plugin: 'kotlin'
dependencies {
compile "com.google.guava:guava:18.0"
compile "com.beust:kobalt:0.174"
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}