-
Notifications
You must be signed in to change notification settings - Fork 13
/
publish-module.gradle
51 lines (45 loc) · 1.67 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
apply plugin: 'maven-publish'
apply plugin: 'signing'
group = PUBLISH_GROUP_ID
version = PUBLISH_VERSION
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.java
groupId PUBLISH_GROUP_ID
artifactId PUBLISH_ARTIFACT_ID
version PUBLISH_VERSION
pom {
name = PUBLISH_ARTIFACT_ID
description = 'Swift Java codegen'
url = 'https://github.com/readdle/swift-java-codegen'
licenses {
license {
name = 'MIT License'
url = 'https://github.com/readdle/swift-java-codegen/blob/master/LICENSE'
}
}
developers {
developer {
id = 'andriydruk'
name = 'Andrew Druk'
email = 'adruk@readdle.com'
}
}
scm {
connection = 'scm:git:github.com/readdle/swift-java-codegen.git'
developerConnection = 'scm:git:ssh://github.com/readdle/swift-java-codegen.git'
url = 'https://github.com/readdle/swift-java-codegen'
}
}
}
}
}
}
ext["signing.keyId"] = rootProject.ext["signing.keyId"]
ext["signing.password"] = rootProject.ext["signing.password"]
ext["signing.secretKeyRingFile"] = rootProject.ext["signing.secretKeyRingFile"]
signing {
sign publishing.publications
}