-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
58 lines (48 loc) · 1.38 KB
/
build.gradle.kts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import de.fayard.OrderBy
import de.fayard.internal.PluginConfig.isNonStable
import org.jetbrains.kotlin.config.KotlinCompilerVersion
plugins {
id("de.fayard.buildSrcVersions") version "0.7.0"
id("de.fayard.dependencies") version "0.5.6"
kotlin("plugin.serialization") version "1.3.72"
}
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath ("com.android.tools.build:gradle:4.2.0-alpha07")
classpath(Libs.kotlin_serialization)
classpath(Libs.kotlin_gradle_plugin)
}
repositories {
google()
jcenter()
mavenCentral()
maven (url = "https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://kotlin.bintray.com/kotlinx")
maven("https://jitpack.io")
}
}
subprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
maven ( url = "https://jitpack.io" )
maven ( url = "https://dl.bintray.com/kotlin/kotlin-eap" )
}
}
/*tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}*/
buildSrcVersions {
// See configuration options at https://github.com/jmfayard/buildSrcVersions/issues/53
orderBy = OrderBy.GROUP_AND_ALPHABETICAL
// propertiesFile = "versions.properties"
//alignVersionsForGroups = listOf()
renameLibs = "Libs"
renameVersions = "Versions"
}