android_terminal/NeoLang/build.gradle
Martin Valba 414c6722ee New terminal based on NeoTerm
* From: https://github.com/NeoTerrm/NeoTerm
* Base commit: 236072395ce056d2d2cccf950d3f243f099a178f
* LICENSE: GPL-3.0

* This will also need changes in nethunter app itself too!
2022-12-27 20:31:07 +02:00

33 lines
544 B
Groovy

apply plugin: 'java-library'
apply plugin: 'kotlin'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compile rootProject.ext.deps["kotlin-stdlib"]
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath rootProject.ext.deps["kotlin-gradle-plugin"]
}
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
testImplementation rootProject.ext.deps["junit"]
}