Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrushforth committed Oct 15, 2019
2 parents 1325f11 + bada612 commit 8e55294
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3810,6 +3810,7 @@ allprojects {
project.jar.enabled = false

// and redirect the resources into the module
project.sourceSets.main.output.resourcesDir = project.moduleDir
project.processResources.destinationDir = project.moduleDir
}

Expand Down Expand Up @@ -3843,6 +3844,7 @@ allprojects {
project.sourceSets.shims.resources.srcDirs += project.sourceSets.main.resources.srcDirs

// and redirect the resources into the module
project.sourceSets.shims.output.resourcesDir = project.moduleShimsDir
project.processShimsResources.destinationDir = project.moduleShimsDir

compileTestJava.dependsOn(copyGeneratedShimsTask)
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jfx.build.jdk.buildnum.min=28
# The jfx.gradle.version.min property defines the minimum version of gradle
# that is supported. It must be <= jfx.gradle.version.
jfx.gradle.version=5.3
jfx.gradle.version.min=4.8
jfx.gradle.version.min=5.3

# Toolchains
jfx.build.linux.gcc.version=gcc8.2.0-OL6.4+1.0
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/crosslibs/crosslibs-armv6hf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ installLibs() {

getPackages \
$DESTINATION \
http://ftp.us.debian.org/debian/ wheezy main armhf \
http://archive.debian.org/debian/ wheezy main armhf \
libatk1.0-dev \
libatk1.0-0 \
libc6 \
Expand Down Expand Up @@ -389,7 +389,7 @@ installLibs() {
# get some rapberry Pi specials
getPackages \
$DESTINATION \
http://archive.raspbian.org/raspbian wheezy firmware armhf \
http://legacy.raspbian.org/raspbian wheezy firmware armhf \
libraspberrypi-dev
}

Expand Down
4 changes: 0 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ project(":web").projectDir = file("modules/javafx.web")
project(":media").projectDir = file("modules/javafx.media")
project(":systemTests").projectDir = file("tests/system")

// Stable publishing behavior is the default in gradle 5.x.
// This setting enables it in gradle 4.8 to help with the transition.
enableFeaturePreview('STABLE_PUBLISHING')

def closedDir = file("../rt-closed")
def buildClosed = closedDir.isDirectory()

Expand Down

0 comments on commit 8e55294

Please sign in to comment.