-
Notifications
You must be signed in to change notification settings - Fork 0
/
mavencentral.gradle
72 lines (64 loc) · 2.61 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
task androidSourcesJar(type: Jar) {
archiveClassifier.set('sources')
from android.sourceSets.main.java.srcDirs
}
artifacts {
archives androidSourcesJar
}
apply plugin: 'maven-publish'
apply plugin: 'signing'
publishing {
publications {
release(MavenPublication) {
groupId 'com.telefonica'
artifactId 'loggerazzi'
version version
artifact("$buildDir/outputs/aar/loggerazzi-release.aar")
artifact androidSourcesJar
pom {
name = 'Android Loggerazzi'
description = 'Logs snapshot testing for Android Instrumentation tests.'
url = 'https://github.com/Telefonica/android-loggerazzi'
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:github.com/Telefonica/android-loggerazzi.git'
developerConnection = 'scm:git:ssh://github.com/Telefonica/android-loggerazzi.git'
url = 'https://github.com/Telefonica/android-loggerazzi/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)
}
}
}
}
}
}
afterEvaluate {
tasks.getByName("publishReleasePublicationToMavenLocal").dependsOn("assembleRelease")
tasks.getByName("publishReleasePublicationToSonatypeRepository").dependsOn("assembleRelease")
tasks.getByName("signReleasePublication").dependsOn("assembleRelease")
}
signing {
def signingKeyId = findProperty("signingKeyId")
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign publishing.publications
}