ControlProxy/build.gradle

35 lines
739 B
Groovy
Raw Normal View History

2021-11-17 03:28:40 +00:00
plugins {
id 'java'
id 'idea'
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:none'
options.compilerArgs << '-Xlint:deprecation' << "-Werror"
}
repositories {
mavenCentral()
2022-04-19 01:26:59 +00:00
2021-11-17 03:28:40 +00:00
}
2023-11-17 09:32:56 +00:00
project(':control-proxy-backend') {
2021-11-17 03:28:40 +00:00
repositories {
2022-04-19 01:26:59 +00:00
mavenLocal()
2022-06-25 03:11:03 +00:00
mavenCentral()
maven { url 'https://maven.aliyun.com/repository/public' }
2021-11-17 03:28:40 +00:00
}
}
2023-11-17 13:37:42 +00:00
project(':datanet-search-engine-backend') {
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://maven.aliyun.com/repository/public' }
}
}
project(':iod-repo-backend') {
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://maven.aliyun.com/repository/public' }
}
}