Re: [JavaFX] project jar file

2019-12-22 Thread Ty Young
On 12/18/19 12:26 PM, Huckleberry Finn wrote: To create a deplyable version of my project  I make a clean & Build project on it. Netbeans will create a jar file in the dist subfolder of the project along with the fx libraries in the lib subfolder of dist. When I run java -jar myproject.jar,

Re: [JavaFX] project jar file

2019-12-22 Thread David Green
Still working thru this myself but this worked for me in a recent CoolBeans packaging of NetBeans using Maven underneath. https://gist.github.com/dgreen/e1ae4636f311d38758dafdd7b0decf0f Maybe it is helpful. Dave On Sun, Dec 22, 2019 at 4:16 AM joe schmo wrote: > I have never used jlink. > ---

Re: Looking for help with Gradle multi-project builds in Netbeans 11.2

2019-12-22 Thread Dr. Matthias Laux
Hi Laszlo, thanks much - indeed I apparently used the wrong terminology here, we're talking a composite build then. However, for that syntax to work :: I'd need to store (in this case) project A in a local Maven repo since A and B are my own stuff. I was hoping to get it done via a filetree dir

Re: Looking for help with Gradle multi-project builds in Netbeans 11.2

2019-12-22 Thread Laszlo Kishalmi
Well this set up seems to be a bit odd. What you described is not a multi-project build. It seems you are trying to use two standalone Gradle projects with weak include-build dependency called composite builds. I'm not sure if that would be your intention to do, but that works if you specify t

Looking for help with Gradle multi-project builds in Netbeans 11.2

2019-12-22 Thread Dr. Matthias Laux
Greetings, I have a Gradle rookie question which I was not able to solve after searching the internet for a considerable amount of time, maybe you can help. I recently decided to upgrade all of my Java projects in netbeans from Ant to Gradle build and after a bit of a learning curve it works, exce

Re: [JavaFX] project jar file

2019-12-22 Thread joe schmo
I have never used jlink. From: Huckleberry Finn Sent: December 21, 2019 5:23 PM To: joe schmo Subject: Re: [JavaFX] project jar file Thank you vey much. I am using jdk 13.0.1 ( the latest) and I am new to Java, migrating from c++. And yes the project is modular