-
Notifications
You must be signed in to change notification settings - Fork 192
/
build.gradle.kts
77 lines (64 loc) · 2.3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import com.android.build.api.dsl.Publishing
import com.android.build.gradle.internal.cxx.os.exe
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
val kotlin_version by extra("1.7.22")
repositories {
google()
mavenCentral()
maven {
isAllowInsecureProtocol = true
url = uri("http://jcenter.bintray.com")
}
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
val versionMajor = 0
val versionMinor = 17
val versionPatch = 2
val versionBuild = 0 // bump for dogfood builds, public betas, etc.
val versionCode = versionMajor * 100000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
val versionName = "$versionMajor.$versionMinor.$versionPatch"
extra.apply {
set("versionCode", versionCode)
set("versionName", "$versionMajor.$versionMinor.$versionPatch")
set("appCompatVer", "1.4.2")
set("junitVer", "4.13.2")
set("androidJunitVer", "1.1.3")
set("espressoVer", "3.4.0")
set("jacksonVer", "2.11.1")
set("commonsIoVer", "2.5") // supports java 1.6
set("commonsCompressVer", "1.12") // supports java 1.6
set("coreKtxVer", "1.8.0")
}
allprojects {
group = "com.github.yausername"
version = versionName
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}
tasks.register("packagePublishedArtifacts") {
val librariesToPublish = listOf("common", "library", "aria2c", "ffmpeg")
librariesToPublish.forEach {
dependsOn(":$it:publishReleasePublicationToMavenRepository")
}
doLast {
exec {
workingDir = project.buildDir.resolve("staging-deploy")
standardOutput = System.out
errorOutput = System.err
val zipCommands = listOf(
"zip",
"-r",
project.buildDir.resolve("archive-$versionName.zip").absolutePath,
) + librariesToPublish.map { "io/github/junkfood02/youtubedl-android/$it/$versionName" }
commandLine(zipCommands)
}
}
}