contract-java-example/build.gradle

21 lines
413 B
Groovy
Raw Normal View History

2021-11-17 03:28:40 +00:00
plugins {
id 'java'
id 'idea'
}
2023-09-19 06:22:03 +00:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
2021-11-17 03:28:40 +00: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 12:55:26 +00:00
mavenCentral()
2021-11-17 03:28:40 +00:00
}
}