2017-03-02 16:23:08 -06:00
|
|
|
group 'asmble'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
2017-03-21 17:53:32 -05:00
|
|
|
ext.kotlin_version = '1.1.1'
|
|
|
|
ext.asm_version = '5.2'
|
2017-03-02 16:23:08 -06:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
2017-03-26 16:40:30 -05:00
|
|
|
apply plugin: 'application'
|
|
|
|
|
|
|
|
mainClassName = "asmble.cli.MainKt"
|
2017-03-02 16:23:08 -06:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2017-03-21 17:53:32 -05:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
|
|
compile "org.ow2.asm:asm-tree:$asm_version"
|
|
|
|
compile "org.ow2.asm:asm-util:$asm_version"
|
2017-03-28 12:56:45 -05:00
|
|
|
compile 'com.google.guava:guava:21.0'
|
2017-03-21 17:53:32 -05:00
|
|
|
testCompile 'junit:junit:4.12'
|
2017-03-06 18:18:36 -06:00
|
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
|
2017-03-27 13:40:37 -05:00
|
|
|
testCompile "org.ow2.asm:asm-debug-all:$asm_version"
|
2017-03-02 16:23:08 -06:00
|
|
|
}
|