This repository has been archived on 2023-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
FxPix/build.gradle

26 lines
414 B
Groovy
Raw Normal View History

2023-07-24 12:14:06 +00:00
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.1.1")
2023-07-24 12:14:06 +00:00
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
}
}
2023-07-31 20:27:37 +00:00
tasks.register('clean', Delete) {
2023-07-24 12:14:06 +00:00
delete rootProject.buildDir
}
2023-07-31 20:27:37 +00:00
tasks.withType(JavaCompile).configureEach {
2023-07-24 12:14:06 +00:00
options.deprecation = true
}