Skip to content

Commit

Permalink
Fix Invalid Bintray
Browse files Browse the repository at this point in the history
Signed-off-by: shedaniel <daniel@shedaniel.me>
  • Loading branch information
shedaniel committed May 31, 2020
1 parent 1080bc1 commit b28dbf6
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions build.gradle
Expand Up @@ -108,6 +108,7 @@ allprojects {

task javadocsJar(type: Jar, dependsOn: javadocs) {
archiveClassifier.set("javadocs")
javadocs.failOnError false
from javadocs.destinationDir
}
}
Expand Down Expand Up @@ -147,18 +148,16 @@ subprojects {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_KEY')
publications = ["${archivesBaseName}_mavenJava"]
publish = true
override = true
pkg {
repo = "cloth"
name = archivesBaseName
userOrg = "shedaniel"
licenses = ["Unlicense"]
websiteUrl = 'https://github.com/shedaniel/cloth-api'
issueTrackerUrl = 'https://github.com/shedaniel/cloth-api/issues'
vcsUrl = 'https://github.com/shedaniel/cloth-api.git'
version {
released = new Date()
githubRepo = 'shedaniel/cloth-api'
websiteUrl = 'https://github.com/shedaniel/cloth-api'
issueTrackerUrl = 'https://github.com/shedaniel/cloth-api/issues'
vcsUrl = 'https://github.com/shedaniel/cloth-api.git'
gpg {
sign = true
}
Expand All @@ -181,18 +180,16 @@ bintray {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_KEY')
publications = ["mavenJava"]
publish = true
override = true
pkg {
repo = "cloth"
name = "cloth-api"
userOrg = "shedaniel"
licenses = ["Unlicense"]
websiteUrl = 'https://github.com/shedaniel/cloth-api'
issueTrackerUrl = 'https://github.com/shedaniel/cloth-api/issues'
vcsUrl = 'https://github.com/shedaniel/cloth-api.git'
version {
released = new Date()
githubRepo = 'shedaniel/cloth-api'
websiteUrl = 'https://github.com/shedaniel/cloth-api'
issueTrackerUrl = 'https://github.com/shedaniel/cloth-api/issues'
vcsUrl = 'https://github.com/shedaniel/cloth-api.git'
gpg {
sign = true
}
Expand Down

0 comments on commit b28dbf6

Please sign in to comment.