-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish.gradle
85 lines (70 loc) · 1.92 KB
/
publish.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
task javadocJar(type: Jar) {
from javadoc.destinationDir
archiveClassifier = 'javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.kotlin
archiveClassifier = 'sources'
}
publishing {
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
name 'deploy'
url = isTravis ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = System.getenv("OSSRH_USERNAME") ?: ossrhUsername
password = System.getenv("OSSRH_PASSWORD") ?: ossrhPassword
}
}
}
publications {
mavenJava(MavenPublication) {
from components.java
if (isReleaseVersion) {
artifact sourcesJar
artifact javadocJar
}
pom {
name = 'avro4k-arrow'
description = 'Avro format support for kotlinx.serialization'
url = 'https://www.github.com/avro-kotlin/avro4k-arrow'
scm {
connection = 'scm:git:http://github.com/avro-kotlin/avro4k-arrow'
developerConnection = 'scm:git:http://github.com/avro-kotlin/avro4k-arrow'
url = 'https://www.github.com/avro-kotlin/avro4k-arrow'
}
licenses {
license {
name = 'The Apache 2.0 License'
url = 'https://opensource.org/licenses/Apache-2.0'
}
}
developers {
developer {
id = 'sksamuel'
name = 'Stephen Samuel'
email = '[email protected]'
}
}
}
}
}
}
artifacts {
archives javadocJar, sourcesJar
}
build {
// afterReleaseBuild.dependsOn publish
}
tasks.withType(Sign) {
onlyIf { isReleaseVersion }
}
tasks.withType(Javadoc) {
onlyIf { isReleaseVersion }
}
signing {
useGpgCmd()
sign publishing.publications.mavenJava
}