-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish-helper.gradle
115 lines (106 loc) · 4.4 KB
/
publish-helper.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
apply plugin: 'maven-publish'
apply plugin: 'signing'
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId PUBLISH_GROUP_ID
version PUBLISH_VERSION
artifactId PUBLISH_ARTIFACT_ID
pom {
name = PUBLISH_ARTIFACT_ID
description = 'LikeMinds Master Feed SDK'
url = 'https://github.com/LikeMindsCommunity/likeminds-feed-android'
licenses {
license {
name = 'LikeMinds License'
url = 'https://likeminds.community/privacy-policy/'
}
}
scm {
connection = 'scm:git:github.com/LikeMindsCommunity/likeminds-feed-android.git'
developerConnection = 'scm:git:ssh://LikeMindsCommunity/likeminds-feed-android.git'
url = 'https://github.com/LikeMindsCommunity/likeminds-feed-android/tree/master'
}
developers {
developer {
id = 'NateshR'
name = 'Natesh Relhan'
email = '[email protected]'
}
developer {
id = 'ishaan1607'
name = 'Ishaan Jain'
email = '[email protected]'
}
developer {
id = 'sidcr7-likeminds'
name = 'Siddharth Dubey'
email = '[email protected]'
}
}
}
}
debug(MavenPublication) {
from components.debug
groupId PUBLISH_GROUP_ID
version PUBLISH_VERSION
artifactId PUBLISH_ARTIFACT_ID
pom {
name = PUBLISH_ARTIFACT_ID
description = 'LikeMinds Master Feed SDK'
url = 'https://github.com/LikeMindsCommunity/likeminds-feed-android'
licenses {
license {
name = 'LikeMinds License'
url = 'https://likeminds.community/privacy-policy/'
}
}
scm {
connection = 'scm:git:github.com/LikeMindsCommunity/likeminds-feed-android.git'
developerConnection = 'scm:git:ssh://LikeMindsCommunity/likeminds-feed-android.git'
url = 'https://github.com/LikeMindsCommunity/likeminds-feed-android/tree/master'
}
developers {
developer {
id = 'NateshR'
name = 'Natesh Relhan'
email = '[email protected]'
}
developer {
id = 'ishaan1607'
name = 'Ishaan Jain'
email = '[email protected]'
}
developer {
id = 'sidcr7-likeminds'
name = 'Siddharth Dubey'
email = '[email protected]'
}
}
}
}
}
repositories {
maven {
name = "sonatype"
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username ossrhUsername
password ossrhPassword
}
}
}
}
}
signing {
useInMemoryPgpKeys(
rootProject.ext["signing.keyId"],
rootProject.ext["signing.key"],
rootProject.ext["signing.password"],
)
sign publishing.publications
}