Skip to content

Commit

Permalink
fix for build script
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Sep 25, 2016
1 parent 7cda19e commit d0c0076
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 22 deletions.
39 changes: 18 additions & 21 deletions gradle/project-info.gradle
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
// -----------------------------------------------------------------------------
// publishing information
// -----------------------------------------------------------------------------
publishing {
artifactId = project.name.toLowerCase()
groupId = 'eu.mihosoft.jfx.scaledfx'
versionId = '0.3'
ext.publishing.artifactId = project.name.toLowerCase()
ext.publishing.groupId = 'eu.mihosoft.jfx.scaledfx'
ext.publishing.versionId = '0.3'

developerName = 'Michael Hoffer'
developerAlias = 'miho'
developerEmail = '[email protected]'
inceptionYear = '2016'
ext.publishing.developerName = 'Michael Hoffer'
ext.publishing.developerAlias = 'miho'
ext.publishing.developerEmail = '[email protected]'
ext.publishing.inceptionYear = '2016'

bintray {
repo = 'ScaledFX'
userORg = 'miho'
name = project.name
}
ext.publishing.bintray.repo = 'ScaledFX'
ext.publishing.bintray.userORg = 'miho'
ext.publishing.bintray.name = project.name

desc = 'JavaFX Pane for scaling arbitrary content nodes.'
license = 'BSD 2-Clause'
licenseUrl = 'https://github.com/miho/ScaledFX/blob/master/LICENSE.txt'
labels = ['javafx', 'java', 'vworkflows', 'vrl']
websiteUrl = 'https://github.com/miho/ScaledFX/wiki'
issueTrackerUrl = 'https://github.com/miho/ScaledFX/issues'
vcsUrl = '[email protected]:miho/ScaledFX.git'
}
ext.publishing.desc = 'JavaFX Pane for scaling arbitrary content nodes.'
ext.publishing.license = 'BSD 2-Clause'
ext.publishing.licenseUrl = 'https://github.com/miho/ScaledFX/blob/master/LICENSE.txt'
ext.publishing.labels = ['javafx', 'java', 'vworkflows', 'vrl']
ext.publishing.websiteUrl = 'https://github.com/miho/ScaledFX/wiki'
ext.publishing.issueTrackerUrl = 'https://github.com/miho/ScaledFX/issues'
ext.publishing.vcsUrl = '[email protected]:miho/ScaledFX.git'

ext.publishing.pomName = ext.publishing.artifactId
2 changes: 1 addition & 1 deletion gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ext.publishing.bintray = [:]

ext.publishing.pomName = ext.publishing.artifactId

apply from: "project-info.gradle"
apply from: "gradle/project-info.gradle"

// -----------------------------------------------------------------------------
// Performs publishing
Expand Down

0 comments on commit d0c0076

Please sign in to comment.