Skip to content

Commit

Permalink
Merge pull request #85 from nielsvanvelzen/fix-bintray-repo
Browse files Browse the repository at this point in the history
Fix incorrect Bintray repository URL
  • Loading branch information
anthonylavado authored Aug 18, 2020
2 parents a6c937d + 4854f11 commit ad4703f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
javaHomeOption: 'JDKVersion'
sonarQubeRunAnalysis: false
env:
bintray_key: $(bintray_key)
BINTRAY_KEY: $(bintray_key)

- task: GithubRelease@0
displayName: 'GitHub Upload'
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Publishing.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.gradle.api.artifacts.dsl.RepositoryHandler

fun RepositoryHandler.jellyfinBintray(project: Project) = maven {
name = "bintray"
url = project.uri("https://bintray.com/jellyfin/jellyfin-apiclient-java/jellyfin-apiclient-java;publish=1;override=1")
url = project.uri("https://api.bintray.com/maven/jellyfin/jellyfin-apiclient-java/jellyfin-apiclient-java/;publish=1;override=1")

credentials {
username = project.getProperty("bintray.user")
Expand Down

0 comments on commit ad4703f

Please sign in to comment.