-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Tue Apr 11 10:32:36 CEST 2017 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
include 'subprojects/bootstrapfx-core' | ||
include 'subprojects/sampler' | ||
|
||
rootProject.name = 'bootstrapfx' | ||
rootProject.children.each { project -> | ||
int slash = project.name.indexOf('/') | ||
String fileBaseName = project.name[(slash + 1)..-1] | ||
String projectDirName = project.name | ||
project.name = fileBaseName | ||
project.projectDir = new File(settingsDir, projectDirName) | ||
project.buildFileName = "${fileBaseName}.gradle" | ||
assert project.projectDir.isDirectory() | ||
assert project.buildFile.isFile() | ||
|
||
def includeProject = { String projectDirName, String projectName -> | ||
File baseDir = new File(settingsDir, projectDirName) | ||
File projectDir = new File(baseDir, projectName) | ||
String buildFileName = "${projectName}.gradle" | ||
|
||
assert projectDir.isDirectory() | ||
assert new File(projectDir, buildFileName).isFile() | ||
|
||
include projectName | ||
project(":${projectName}").projectDir = projectDir | ||
project(":${projectName}").buildFileName = buildFileName | ||
} | ||
|
||
includeProject 'subprojects', 'bootstrapfx-core' | ||
includeProject 'subprojects', 'sampler' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters