Skip to content

Commit

Permalink
Updated bintray dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Steppschuh committed Jul 14, 2020
1 parent be389e9 commit f871266
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
14 changes: 8 additions & 6 deletions Source/MarkdownGenerator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

plugins {
id "com.jfrog.bintray" version "1.7.3"
id "com.jfrog.bintray" version "1.8.5"
}

allprojects {
Expand All @@ -23,8 +23,10 @@ allprojects {
}
}

def libraryVersion = '1.3.2'

group 'net.steppschuh.markdowngenerator'
version = '1.3.2'
version = libraryVersion

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -59,7 +61,7 @@ publishing {
artifact javadocJar
groupId 'net.steppschuh.markdowngenerator'
artifactId 'markdowngenerator'
version "${version}"
version "${libraryVersion}"
pom.withXml {
def root = asNode()
root.appendNode('description', 'Java library to generate markdown')
Expand All @@ -85,10 +87,10 @@ bintray {
githubRepo = 'Steppschuh/Java-Markdown-Generator'
githubReleaseNotesFile = 'README.md'
version {
name = "${version}"
desc = "Markdown Generator ${version}"
name = "${libraryVersion}"
desc = "Markdown Generator ${libraryVersion}"
released = new Date()
vcsTag = "${version}"
vcsTag = "${libraryVersion}"
gpg {
sign = true
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Tue Jul 14 14:30:46 CEST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit f871266

Please sign in to comment.