forked from kotest/kotest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
95 lines (77 loc) · 2.35 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
86
87
88
89
90
91
92
93
94
95
apply plugin: 'org.jetbrains.dokka'
dokka {
outputFormat = 'javadoc'
outputDirectory = javadoc.destinationDir
}
dokka.dependsOn javadoc
task javadocJar(type: Jar, dependsOn: dokka) {
//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 = 'KotlinTest'
description = 'Kotlin Test Framework'
url = 'http://www.github.com/kotlintest/kotlintest'
scm {
connection = 'scm:git:http://www.github.com/kotlintest/kotlintest/'
developerConnection = 'scm:git:http://github.com/sksamuel/'
url = 'http://www.github.com/kotlintest/kotlintest/'
}
licenses {
license {
name = 'The Apache 2.0 License'
url = 'https://opensource.org/licenses/Apache-2.0'
}
}
developers {
developer {
id = 'sksamuel'
name = 'Stephen Samuel'
email = 'sam@sksamuel.com'
}
}
}
}
}
}
artifacts {
archives javadocJar, sourcesJar
}
build {
// afterReleaseBuild.dependsOn publish
}
tasks.withType(Sign) {
onlyIf { isReleaseVersion }
}
tasks.withType(Javadoc) {
onlyIf { isReleaseVersion }
}
signing {
useGpgCmd()
sign publishing.publications.mavenJava
}