rusefi/java_tools/build.gradle

24 lines
439 B
Groovy

apply from: 'dependencies.gradle'
allprojects {
repositories {
mavenCentral()
}
plugins.withType(JavaPlugin) {
dependencies {
implementation global_libs.annotations
testImplementation global_libs.junit
}
}
}
tasks.named('wrapper') {
distributionType = Wrapper.DistributionType.ALL
}
// gradlew allDeps
subprojects {
task allDeps(type: DependencyReportTask) {}
}