Skip to content

Commit

Permalink
Change Bintray package name to DoggyActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
piruin committed Nov 11, 2016
1 parent a4b3008 commit 42050a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doggy-activity/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ artifacts {
install {
repositories.mavenInstaller {
pom.project {
name 'Doggy Activity'
name rootProject.name
inceptionYear 2016
description = project.description
url = 'https://github.com/' + project.githubRepo
Expand Down Expand Up @@ -82,19 +82,19 @@ bintray {
publish = true
pkg {
repo = 'maven'
name = 'Doggy Activity'
name = rootProject.name
desc = project.description
websiteUrl = 'https://github.com/' + project.githubRepo
issueTrackerUrl = 'https://github.com/' + project.githubRepo + '/issues'
vcsUrl = 'https://github.com/' + project.githubRepo + '.git'
githubRepo = project.githubRepo
githubReleaseNotesFile = 'CHANGELOG.md'
githubReleaseNotesFile = 'README.md'
licenses = ['Apache-2.0']
publicDownloadNumbers = true
version {
name = project.version
released = new Date()
vcsTag = 'v' + project.version
vcsTag = project.version
}
}
}

0 comments on commit 42050a9

Please sign in to comment.