-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (31 loc) · 859 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
36 lines (31 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
buildscript {
extra["androidMinSdkVersion"] = 18
extra["androidCompileSdkVersion"] = 30
extra["androidTargetSdkVersion"] = 30
repositories {
google()
mavenCentral()
mavenLocal()
maven("../MavenPublisher/publisher/build/prebuilt")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
configurations.configureEach {
resolutionStrategy {
cacheChangingModulesFor(0, TimeUnit.SECONDS)
}
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20")
classpath("com.android.tools.build:gradle:4.2.2")
classpath("io.deepmedia.tools:publisher:0.6.0")
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
tasks.register("clean", Delete::class) {
delete(buildDir)
}