Skip to content

Commit d0c0076

Browse files
committed
fix for build script
1 parent 7cda19e commit d0c0076

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed

gradle/project-info.gradle

+18-21
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
// -----------------------------------------------------------------------------
22
// publishing information
33
// -----------------------------------------------------------------------------
4-
publishing {
5-
artifactId = project.name.toLowerCase()
6-
groupId = 'eu.mihosoft.jfx.scaledfx'
7-
versionId = '0.3'
4+
ext.publishing.artifactId = project.name.toLowerCase()
5+
ext.publishing.groupId = 'eu.mihosoft.jfx.scaledfx'
6+
ext.publishing.versionId = '0.3'
87

9-
developerName = 'Michael Hoffer'
10-
developerAlias = 'miho'
11-
developerEmail = '[email protected]'
12-
inceptionYear = '2016'
8+
ext.publishing.developerName = 'Michael Hoffer'
9+
ext.publishing.developerAlias = 'miho'
10+
ext.publishing.developerEmail = '[email protected]'
11+
ext.publishing.inceptionYear = '2016'
1312

14-
bintray {
15-
repo = 'ScaledFX'
16-
userORg = 'miho'
17-
name = project.name
18-
}
13+
ext.publishing.bintray.repo = 'ScaledFX'
14+
ext.publishing.bintray.userORg = 'miho'
15+
ext.publishing.bintray.name = project.name
1916

20-
desc = 'JavaFX Pane for scaling arbitrary content nodes.'
21-
license = 'BSD 2-Clause'
22-
licenseUrl = 'https://github.com/miho/ScaledFX/blob/master/LICENSE.txt'
23-
labels = ['javafx', 'java', 'vworkflows', 'vrl']
24-
websiteUrl = 'https://github.com/miho/ScaledFX/wiki'
25-
issueTrackerUrl = 'https://github.com/miho/ScaledFX/issues'
26-
vcsUrl = '[email protected]:miho/ScaledFX.git'
27-
}
17+
ext.publishing.desc = 'JavaFX Pane for scaling arbitrary content nodes.'
18+
ext.publishing.license = 'BSD 2-Clause'
19+
ext.publishing.licenseUrl = 'https://github.com/miho/ScaledFX/blob/master/LICENSE.txt'
20+
ext.publishing.labels = ['javafx', 'java', 'vworkflows', 'vrl']
21+
ext.publishing.websiteUrl = 'https://github.com/miho/ScaledFX/wiki'
22+
ext.publishing.issueTrackerUrl = 'https://github.com/miho/ScaledFX/issues'
23+
ext.publishing.vcsUrl = '[email protected]:miho/ScaledFX.git'
2824

25+
ext.publishing.pomName = ext.publishing.artifactId

gradle/publishing.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ext.publishing.bintray = [:]
66

77
ext.publishing.pomName = ext.publishing.artifactId
88

9-
apply from: "project-info.gradle"
9+
apply from: "gradle/project-info.gradle"
1010

1111
// -----------------------------------------------------------------------------
1212
// Performs publishing

0 commit comments

Comments
 (0)