Re: [8u60,9] review request: RT-40691: Update the JDK version used to build FX to JDK 8u40

2015-05-27 Thread Kevin Rushforth
We had considered that, but our build machines were updated with 8u40 and it didn't seem worth it given that there aren't any known bug fixes in 8u45 that would matter (e.g., in SwingInterop which is the big reason to switch to 8u40). I would recommend that developers keep their JDK up to date

Re: [8u60,9] review request: RT-40691: Update the JDK version used to build FX to JDK 8u40

2015-05-27 Thread Jim Graham
8u45 is already out, shouldn't we require that as long as we are updating? ...jim On 5/27/2015 12:53 PM, Kevin Rushforth wrote: David, Chien, and Amy: As announced previously, this fix will update our builds to use (and require) JDK 8u40 to build FX. https://javafx-jir

[8u60,9] review request: RT-40691: Update the JDK version used to build FX to JDK 8u40

2015-05-27 Thread Kevin Rushforth
David, Chien, and Amy: As announced previously, this fix will update our builds to use (and require) JDK 8u40 to build FX. https://javafx-jira.kenai.com/browse/RT-40691 http://cr.openjdk.java.net/~kcr/RT-40691/webrev.00/ Please review and comment in JIRA. Thanks. -- Kevin

Re: Building Scene Builder

2015-05-27 Thread Kevin Rushforth
Yeah, I fixed the last remaining bug that prevented our building with gradle 2.x a couple months ago. I occasionally use gradle 2.3 for my builds of FX for sanity testing, so will upgrade to gradle 2.4. Once 8u60 ZBB is past that might be a good time to make the switch in FX 9. -- Kevin Jona

Re: Building Scene Builder

2015-05-27 Thread Jonathan Giles
I should note that on my main development machine I build openjfx using the latest gradle release - 2.4 I think. As far as I can see there are no issues with this. -- Jonathan Sent from a touch device. Please excuse my brevity. On 28 May 2015 05:21:49 GMT+12:00, Kevin Rushforth wrote: > > >Sv

Re: Building Scene Builder

2015-05-27 Thread Scott Palmer
> On May 27, 2015, at 12:47 PM, David Hill wrote: > > On 5/27/15, 12:08 PM, Scott Palmer wrote: >>> On May 27, 2015, at 10:04 AM, David Hill wrote: >>> >>> On 5/24/15, 10:56 AM, Scott Palmer wrote: Where can I find the instructions for building Scene Builder from source?

Re: Building Scene Builder

2015-05-27 Thread Kevin Rushforth
Sven Reimers wrote: So, is this a call for community and Gradle experts please helps us? We are able (and want) to upgrade to a newer gradle version? Not for FX 8u. We will upgrade FX 9 to a newer gradle (e.g., .2.3 or later). See: https://javafx-jira.kenai.com/browse/RT-40256 -- Kev

Re: Building Scene Builder

2015-05-27 Thread Sven Reimers
So, is this a call for community and Gradle experts please helps us? We are able (and want) to upgrade to a newer gradle version? We want to share the whole pile of dirty gradle scripts to get you started? Sounds interesting to me... -Sven Am 27.05.2015 18:48 schrieb "David Hill" : > On 5/27/

Re: Building Scene Builder

2015-05-27 Thread David Hill
On 5/27/15, 12:08 PM, Scott Palmer wrote: On May 27, 2015, at 10:04 AM, David Hill wrote: On 5/24/15, 10:56 AM, Scott Palmer wrote: Where can I find the instructions for building Scene Builder from source? I ran Ant in the apps/scenebuilder folder and it produced SceneBuilderApp.jar in the '

Re: Building Scene Builder

2015-05-27 Thread Scott Palmer
> On May 27, 2015, at 10:04 AM, David Hill wrote: > > On 5/24/15, 10:56 AM, Scott Palmer wrote: >> Where can I find the instructions for building Scene Builder from source? >> >> >> I ran Ant in the apps/scenebuilder folder and it produced >> SceneBuilderApp.jar in the 'SceneBuilderApp/dist' f

review for SceneBuilder run

2015-05-27 Thread David Hill
jira: https://javafx-jira.kenai.com/browse/RT-4014 webrev: http://cr.openjdk.java.net/~ddhill/RT-40140 Kevin, This works - but does not make complete sense to me. I am setting a default setting of: which is used/accepted by the samples subdir,

Re: Trouble building JDK in debug mode

2015-05-27 Thread David Hill
On 5/27/15, 9:55 AM, Sam' wrote: Hi, I have followed the wiki in order to build the JDK ( https://wiki.openjdk.java.net/display/OpenJFX/Building+OpenJFX). Now I want to provide some patch for some issues in JavaFX and I want to modify the source code and test it. But in order to test it, I

Re: NPE is JavaFX Task

2015-05-27 Thread Kevin Rushforth
This is due to a concurrency bug in CSS StyleManager class: https://javafx-jira.kenai.com/browse/RT-40417 It is currently not thread-safe, but it needs to be given that controls may be constructed on arbitrary threads. I plan to start working on this bug later this week and will use your exa

Re: Building Scene Builder

2015-05-27 Thread David Hill
On 5/24/15, 10:56 AM, Scott Palmer wrote: Where can I find the instructions for building Scene Builder from source? I ran Ant in the apps/scenebuilder folder and it produced SceneBuilderApp.jar in the 'SceneBuilderApp/dist' folder. But where's the rest of it? It looks like the javapackager pa

Trouble building JDK in debug mode

2015-05-27 Thread Sam'
Hi, I have followed the wiki in order to build the JDK ( https://wiki.openjdk.java.net/display/OpenJFX/Building+OpenJFX). Now I want to provide some patch for some issues in JavaFX and I want to modify the source code and test it. But in order to test it, I need to compile it with the debug e

Re: NPE is JavaFX Task

2015-05-27 Thread Peter Penzov
Update: Same result with this code: public void addNewTab(DynamicTreeNodeModel nodeModel) { final Tab tab = new Tab(); final ProgressBar progressBar = new ProgressBar(); final Task loadDataTask = new Task() { @Override public BorderPane

NPE is JavaFX Task

2015-05-27 Thread Peter Penzov
Hi All, I have a question about a issue that I have with JavaFX Task. I'm using the code from this example to display progress bar in TabPane when I click on TreeView Node: http://stackoverflow.com/questions/22803845/loading-logic-for-javafx-task For some reason when I click multiple times on