-
Notifications
You must be signed in to change notification settings - Fork 3
/
publish-module.gradle
66 lines (59 loc) · 2.03 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
apply plugin: 'maven-publish'
apply plugin: 'signing'
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 = 'Dispose automatically RxJava streams using AAC Lifecycle..'
url = 'https://github.com/wada811/LifecycleDispose'
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 = '[email protected]'
}
}
scm {
connection = 'scm:git:github.com/wada811/LifecycleDispose.git'
developerConnection = 'scm:git:ssh://github.com/wada811/LifecycleDispose.git'
url = 'https://github.com/wada811/LifecycleDispose/tree/master'
}
}
}
}
}
}