mirror of
https://gitee.com/BDWare/contract-java-example.git
synced 2025-01-10 01:44:09 +00:00
21 lines
389 B
Groovy
21 lines
389 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'idea'
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << '-Xlint:none'
|
|
options.compilerArgs << '-Xlint:deprecation' << "-Werror"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
project(':backend') {
|
|
group = "org.bdware.sc.example"
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
}
|
|
}
|