Files
NeoTerm_System/NeoLang/build.gradle
imkiva 9d466997f7 BUILD: upgrade to Gradle 7.0
- upgrade Kotlin to 1.4.32
- upgrade android gradle plugin to 4.1.3

- remove `versionNameSuffix`
- remove `buildToolsVersion` as android gradle plugin already done it
- remove unnecessary `targetCompatibility` and `sourceCompatibility` in subprojects
- remove proguard
- remove NeoTermBridgeExample
- remove unused tests
- remove bintray upload of NeoTermBridge
2021-05-08 00:31:07 +08:00

33 lines
584 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"]
}