Re: java.lang.NumberFormatException: For input string: ""

2021-05-03 Thread Laszlo Kishalmi
That seems to be right. On 5/3/21 9:30 PM, Zulfi Khan wrote: Hi, I am getting following message when I am compiling my program on NetBeans 12.3 on Ubuntu 18.04: cd /home/zulfi/NetBeansProjects/GUI1; JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 /snap/netbeans/45/netbeans/java/maven/bin/mvn

java.lang.NumberFormatException: For input string: ""

2021-05-03 Thread Zulfi Khan
Hi, I am getting following message when I am compiling my program on NetBeans 12.3 on Ubuntu 18.04: cd /home/zulfi/NetBeansProjects/GUI1; JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 /snap/netbeans/45/netbeans/java/maven/bin/mvn "-Dexec.args=-classpath %classpath com.mycompany.gui1.GuiMain" -D

Re: Gradle - displaying dependency graph like Maven

2021-05-03 Thread Christian Pervoelz
May you want to try implementing your own? https://github.com/apache/netbeans/tree/master/java/maven.graph might be a good starting point... There might not be everything in place for scanning gradle, but maybe the output of what Giles propose might be a good input for the graph. Am Mo., 3. Mai 2

Re: Gradle - displaying dependency graph like Maven

2021-05-03 Thread Fred Welland
Outside of netbeans, and just in gradle-space, there are a few plugins that assist with dep visualizaiton. There is also gradle build scans, which provide lots of good information about a build, including data on deps. On Mon, May 3, 2021 at 10:29 AM Laszlo Kishalmi wrote: > That's the best t

Re: Gradle - displaying dependency graph like Maven

2021-05-03 Thread Laszlo Kishalmi
That's the best thing you can do now. There is no UI Graph representation of dependencies implemented for Gradle. On 5/3/21 12:00 AM, Giles Winstanley wrote: `gradle dependencies` is a good starting place (I typically also use the -q option to remove the cruft). There's also, for example:

[platform] Replacing jar files in modules/ext

2021-05-03 Thread Patrik Karlström
I'm looking for a way to handle the use of LGPLv3 dependencies in a platform application with regard to the following: - permit all users to exchange the library with other API-compatible library versions (e.g. those with security- & bug-fixes) As an end user, I replaced the dependency in questio

Re: Gradle - displaying dependency graph like Maven

2021-05-03 Thread Giles Winstanley
`gradle dependencies` is a good starting place (I typically also use the -q option to remove the cruft). There's also, for example: `gradlew -q dependencies --configuration runtimeClasspath` which will give you depdencencies just a specific configuration. With regard to Netbeans integrati