-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
publish-module.gradle
83 lines (75 loc) · 2.85 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
73
74
75
76
77
78
79
80
81
82
83
apply plugin: 'maven-publish'
apply plugin: 'signing'
task androidSourcesJar(type: Jar) {
archiveClassifier.set('sources')
if (project.plugins.findPlugin("com.android.library")) {
getLogger().debug("found the library thing")
// For Android libraries
from android.sourceSets.main.java.srcDirs
from android.sourceSets.main.kotlin.srcDirs
} else {
// For pure Kotlin libraries, in case you have them
from sourceSets.main.java.srcDirs
from sourceSets.main.kotlin.srcDirs
}
}
artifacts {
archives androidSourcesJar
}
group = PUBLISH_GROUP_ID
version = LINK_PREVIEW_VERSION_NAME
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
// The coordinates of the library, being set from variables that
// we'll set up later
groupId PUBLISH_GROUP_ID
artifactId LINK_PREVIEW_ARTIFACT_ID
version LINK_PREVIEW_VERSION_NAME
// Two artifacts, the `aar` (or `jar`) and the sources
if (project.plugins.findPlugin("com.android.library")) {
from components.release
} else {
from components.java
}
artifact androidSourcesJar
// Mostly self-explanatory metadata
pom {
name = LINK_PREVIEW_ARTIFACT_ID
description = 'A convenient view that shows a clickable preview of a link'
url = 'https://github.com/NickM-27/LinkPreview'
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'http://www.apache.org/license/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'nicknackdev'
name = 'Nick Mowen'
email = '[email protected]'
}
// Add all other devs here...
}
// Version control info - if you're using GitHub, follow the
// format as seen here
scm {
connection = 'scm:git:github.com/NickM-27/LinkPreview.git'
developerConnection = 'scm:git:ssh://github.com/NickM-27/LinkPreview.git'
url = 'https://github.com/NickM-27/LinkPreview/tree/main'
}
}
}
}
}
}
signing {
useInMemoryPgpKeys(
rootProject.ext["signing.keyId"],
rootProject.ext["signing.key"],
rootProject.ext["signing.password"],
)
sign publishing.publications
}