-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.gradle
55 lines (50 loc) · 1.52 KB
/
deploy.gradle
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
task deployCore(dependsOn: [
':halley-core:clean',
':halley-core:publishReleasePublicationToSonatypeRepository'
]) {
group = "Deploy"
description = "Deploy module to repositories"
}
task deployRetrofit(dependsOn: [
':halley-retrofit:clean',
':halley-retrofit:publishReleasePublicationToSonatypeRepository'
]) {
group = "Deploy"
description = "Deploy module to repositories"
}
task deployKtor(dependsOn: [
':halley-ktor:clean',
':halley-ktor:publishReleasePublicationToSonatypeRepository'
]) {
group = "Deploy"
description = "Deploy module to repositories"
}
task deployPlugin(dependsOn: [
':halley-plugin:clean',
':halley-plugin:publishReleasePublicationToSonatypeRepository'
]) {
group = "Deploy"
description = "Deploy module to repositories"
}
task deployAll(dependsOn: [
'deployCore',
'deployRetrofit',
'deployKtor',
'deployPlugin'
]) {
group = "Deploy"
description = "Deploy all Halley modules to repositories"
}
task deployDebug(dependsOn: [
':halley-core:clean',
':halley-retrofit:clean',
':halley-ktor:clean',
':halley-plugin:clean',
':halley-core:publishReleasePublicationToMavenLocal',
':halley-retrofit:publishReleasePublicationToMavenLocal',
':halley-ktor:publishReleasePublicationToMavenLocal',
':halley-plugin:publishReleasePublicationToMavenLocal'
]) {
group = "Deploy"
description = "Deploy all modules to Mavel Local repository"
}