Skip to content

Commit

Permalink
Fix build.gradle for uploading to bintray
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall committed Aug 13, 2019
1 parent da04d26 commit 08dc7db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.jfrog.bintray" version "1.7"
id "com.jfrog.bintray" version "1.8.4"
}

repositories {
Expand All @@ -11,6 +11,7 @@ apply plugin: 'maven'
apply plugin: 'maven-publish'

sourceCompatibility = 1.8
version = "0.3"

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
Expand Down Expand Up @@ -58,7 +59,7 @@ publishing {
artifact javadocJar
groupId 'net.fornwall.jelf'
artifactId 'jelf'
version '0.3'
version this.version
pom.withXml {
def root = asNode()
root.appendNode('description', 'ELF parsing library in java')
Expand Down

0 comments on commit 08dc7db

Please sign in to comment.