Re: Allowing classpath directory entries with /*

2020-04-26 Thread Laszlo Kishalmi
Well, I'd recommend to use Gradle instead of Ant projects for this use case. On 4/26/20 1:56 AM, Thomas Kellerer wrote: Java has been supporting providing a classpath with a wildcard for quite some time now, e.g.:    java -cp libs/* com.package.MyClass which is really usefull especially if yo

Re: How to change font size of menubars in netbeans 11.3

2020-04-26 Thread ami kaminsky
Hi in file \NetBeans-11.3\netbeans\etc\netbeans.conf add to netbeans_default_options --fontsize . for example: netbeans_default_options="-J-XX:+UseStringDeduplication --fontsize 18 Ami On Sat, Apr 25, 2020 at 6:53 AM Brain Rebooting wrote: > HI, > > I am running Apache Netbeans 11.3 in u

Allowing classpath directory entries with /*

2020-04-26 Thread Thomas Kellerer
Java has been supporting providing a classpath with a wildcard for quite some time now, e.g.: java -cp libs/* com.package.MyClass which is really usefull especially if you are using libraries with version numbers. However in an Ant based project in NetBeans, it's not possible to define suc