Skip to content

Commit

Permalink
Change log and minor publish tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
btkelly committed Sep 9, 2019
1 parent 1690617 commit bc6c198
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## v1.4.0

_09-09-2019__

- Updated project dependencies.
- Updated Android Gradle plugin and Gradle version.

## v1.3.5

_03-06-2017__
Expand Down
5 changes: 2 additions & 3 deletions gandalf/bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ artifacts {
publishing {
publications {
Production(MavenPublication) {
artifact("$buildDir/outputs/aar/gandalf-release.aar")
groupId publishedGroupId
artifactId artifact
version libraryVersion
Expand Down Expand Up @@ -86,8 +85,8 @@ if (project.hasProperty('BINTRAY_USER') && project.hasProperty('BINTRAY_API_KEY'
apply plugin: 'com.jfrog.bintray'

bintray {
user = project.hasProperty('BINTRAY_USER')
key = project.hasProperty('BINTRAY_API_KEY')
user = project.property('BINTRAY_USER')
key = project.property('BINTRAY_API_KEY')
publications = ['Production']
configurations = ['archives']
// Default: false. Whether to run this as dry-run, without deploying
Expand Down
3 changes: 2 additions & 1 deletion gandalf/variables.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
version = "1.4.0"
group = "com.btkelly"

ext {
bintrayRepo = 'maven'
bintrayName = 'gandalf'

publishedGroupId = 'com.btkelly'
publishedGroupId = group

artifact = 'gandalf'

Expand Down

0 comments on commit bc6c198

Please sign in to comment.