-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish-module.gradle
72 lines (64 loc) · 2.22 KB
/
publish-module.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
apply plugin: 'maven-publish'
apply plugin: 'signing'
ext {
PUBLISH_GROUP_ID = 'com.wada811.viewmodelsavedstatektx'
PUBLISH_ARTIFACT_ID = 'viewmodelsavedstatektx'
PUBLISH_VERSION = '3.0.0'
}
android {
publishing {
singleVariant('release') {
withSourcesJar()
}
}
}
signing {
useInMemoryPgpKeys(
rootProject.ext["signing.keyId"],
rootProject.ext["signing.key"],
rootProject.ext["signing.password"],
)
sign publishing.publications
}
group = PUBLISH_GROUP_ID
version = PUBLISH_VERSION
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId PUBLISH_GROUP_ID
artifactId PUBLISH_ARTIFACT_ID
version PUBLISH_VERSION
// Two artifacts, the `aar` (or `jar`) and the sources
if (project.plugins.findPlugin("com.android.library")) {
from components.release
} else {
from components.java
}
pom {
name = PUBLISH_ARTIFACT_ID
description = 'ViewModel-SavedState-ktx make easy handling saved state by delegated property.'
url = 'https://github.com/wada811/ViewModel-SavedState-ktx'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'wada811'
name = 'WADA Takumi'
email = 'at.wada811@gmail.com'
}
}
scm {
connection = 'scm:git:github.com/wada811/ViewModel-SavedState-ktx.git'
developerConnection = 'scm:git:ssh://github.com/wada811/ViewModel-SavedState-ktx.git'
url = 'https://github.com/wada811/ViewModel-SavedState-ktx/tree/master'
}
}
}
}
}
}