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 11apply plugin : ' maven-publish'
22apply plugin : " io.spring.bintray"
33
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
1715bintray. gpgPassphrase = hasProperty(' signing_password' ) ? signing_password : System . getenv(' SIGNING_PASSWORD' )
1816
1917task javadocJar (type : Jar , dependsOn : javadoc) {
You can’t perform that action at this time.
0 commit comments