forked from mockito/mockito-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublishing.gradle
More file actions
92 lines (75 loc) · 2.32 KB
/
publishing.gradle
File metadata and controls
92 lines (75 loc) · 2.32 KB
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
apply plugin: 'signing'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.nhaarman'
version = rootProject.ext.versionName
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
signing {
sign configurations.archives
}
install {
repositories.mavenInstaller {
pom {
project {
name 'Mockito-Kotlin'
packaging 'jar'
description 'Using Mockito with Kotlin.'
url 'https://github.com/nhaarman/mockito-kotlin'
scm {
url 'scm:git@github.com:nhaarman/mockito-kotlin.git'
connection 'scm:git@github.com:nhaarman/mockito-kotlin.git'
developerConnection 'scm:git@github.com:nhaarman/mockito-kotlin.git'
}
licenses {
license {
name 'MIT'
url 'https://opensource.org/licenses/MIT'
distribution 'repo'
}
}
developers {
developer {
id 'nhaarman'
name 'Niek Haarman'
}
}
}
}
}
}
bintray {
user = hasProperty('bintray_username') ? bintray_username : System.getenv('BINTRAY_USER')
key = hasProperty('bintray_key') ? bintray_key : System.getenv('BINTRAY_KEY')
configurations = ['archives']
publish = true
pkg {
repo = 'maven'
name = 'Mockito-Kotlin'
licenses = ['MIT']
vcsUrl = 'https://github.com/nhaarman/mockito-kotlin.git'
version {
name = versionName
gpg {
sign = true
}
mavenCentralSync {
sync = true
user = hasProperty('sonatype_username') ? sonatype_username : System.getenv('SONATYPE_USERNAME')
password = hasProperty('sonatype_password') ? sonatype_password : System.getenv('SONATYPE_PASSWORD')
close = '1'
}
}
}
}