File tree Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' maven-publish'
2
2
apply plugin : " io.spring.bintray"
3
3
4
- bintray {
5
- bintrayUser = hasProperty(' bintray_username' ) ? bintray_username : System . getenv(' BINTRAY_USER' )
6
- bintrayKey = hasProperty(' bintray_key' ) ? bintray_key : System . getenv(' BINTRAY_KEY' )
7
- repo = ' maven'
8
- org = hasProperty(' bintray_username' ) ? bintray_username : System . getenv(' BINTRAY_USER' )
9
- packageName = ' Mockito-Kotlin'
10
- publication = ' mavenJava'
11
-
12
- licenses = [' MIT' ]
13
- ossrhUser = hasProperty(' sonatype_username' ) ? sonatype_username : System . getenv(' SONATYPE_USERNAME' )
14
- ossrhPassword = hasProperty(' sonatype_password' ) ? sonatype_password : System . getenv(' SONATYPE_PASSWORD' )
15
- overrideOnUpload = false
16
- }
4
+ bintray. bintrayUser = hasProperty(' bintray_username' ) ? bintray_username : System . getenv(' BINTRAY_USER' )
5
+ bintray. bintrayKey = hasProperty(' bintray_key' ) ? bintray_key : System . getenv(' BINTRAY_KEY' )
6
+ bintray. repo = ' maven'
7
+ bintray. org = hasProperty(' bintray_username' ) ? bintray_username : System . getenv(' BINTRAY_USER' )
8
+ bintray. packageName = ' Mockito-Kotlin'
9
+ bintray. publication = ' mavenJava'
10
+
11
+ bintray. licenses = [' MIT' ]
12
+ bintray. ossrhUser = hasProperty(' sonatype_username' ) ? sonatype_username : System . getenv(' SONATYPE_USERNAME' )
13
+ bintray. ossrhPassword = hasProperty(' sonatype_password' ) ? sonatype_password : System . getenv(' SONATYPE_PASSWORD' )
14
+ bintray. overrideOnUpload = false
17
15
bintray. gpgPassphrase = hasProperty(' signing_password' ) ? signing_password : System . getenv(' SIGNING_PASSWORD' )
18
16
19
17
task javadocJar (type : Jar , dependsOn : javadoc) {
You can’t perform that action at this time.
0 commit comments