rusefi/java_tools/build.gradle

31 lines
681 B
Groovy
Raw Normal View History

apply from: 'dependencies.gradle'
allprojects {
repositories {
mavenCentral()
}
plugins.withType(JavaPlugin) {
dependencies {
implementation global_libs.annotations
testImplementation global_libs.junit
}
}
tasks.withType(JavaExec).configureEach {
if (name.endsWith("main()")) {
// https://github.com/gradle/gradle/issues/21364
notCompatibleWithConfigurationCache("JavaExec created by IntelliJ")
}
}
}
2022-11-20 21:51:52 -08:00
2023-05-30 19:16:29 -07:00
tasks.named('wrapper') {
distributionType = Wrapper.DistributionType.ALL
}
2022-11-20 21:51:52 -08:00
// gradlew allDeps
subprojects {
task allDeps(type: DependencyReportTask) {}
}