-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmavencentral.gradle
76 lines (67 loc) · 2.67 KB
/
mavencentral.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
task sourcesJar(type: Jar) {
archiveClassifier.set('sources')
from android.sourceSets.main.java.srcDirs
}
artifacts {
archives sourcesJar
}
apply plugin: 'maven-publish'
apply plugin: 'signing'
ext {
PUBLISH_GROUP_ID = 'com.telefonica'
PUBLISH_ARTIFACT_ID = 'nestedscrollwebview'
PUBLISH_VERSION = version
PUBLISH_RELEASE_NAME = 'Nested Scroll WebView for Android'
PUBLISH_DESCRIPTION = 'A webView implementation with nested scrolling support'
PUBLISH_REPO_URL = 'https://github.com/Telefonica/android-nested-scroll-webview'
}
publishing {
publications {
release(MavenPublication) {
groupId PUBLISH_GROUP_ID
artifactId PUBLISH_ARTIFACT_ID
version PUBLISH_VERSION
artifact("$buildDir/outputs/aar/${project.getName()}-release.aar")
artifact sourcesJar
pom {
name = PUBLISH_RELEASE_NAME
description = PUBLISH_DESCRIPTION
url = PUBLISH_REPO_URL
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'android-team-telefonica'
name = 'Android Team'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:https://github.com/Telefonica/android-nested-scroll-webview.git'
developerConnection = 'scm:git:ssh://https://github.com/Telefonica/android-nested-scroll-webview.git'
url = 'https://github.com/Telefonica/android-nested-scroll-webview/tree/main'
}
withXml {
def dependenciesNode = asNode().appendNode('dependencies')
project.configurations.getByName("implementation").allDependencies.each {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', it.group)
dependencyNode.appendNode('artifactId', it.name)
dependencyNode.appendNode('version', it.version)
}
}
}
}
}
}
signing {
def signingKeyId = findProperty("signingKeyId")
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign publishing.publications
}