Files
contract-java-example/build.gradle

21 lines
413 B
Groovy
Raw Normal View History

2021-11-17 11:28:40 +08:00
plugins {
id 'java'
id 'idea'
}
2023-09-19 14:22:03 +08:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2021-11-17 11:28:40 +08:00
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:none'
options.compilerArgs << '-Xlint:deprecation' << "-Werror"
}
repositories {
mavenCentral()
}
project(':backend') {
group = "org.bdware.sc.example"
repositories {
2022-05-19 20:55:26 +08:00
mavenCentral()
2021-11-17 11:28:40 +08:00
}
}