1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-line-count.git synced 2025-04-25 03:07:11 -07:00

Make the plug-in debuggable.

This commit is contained in:
Cedric Beust 2015-10-07 23:30:08 -07:00
parent d6a5bd6268
commit 1ef8e4b945
7 changed files with 214 additions and 17 deletions

30
build.gradle Normal file
View file

@ -0,0 +1,30 @@
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.155"
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}