VS: Invitation to join the Apache NetBeans 10 Community Acceptance Testing program

2018-10-03 Thread Bo Andersen
Can I download the test binaries (Apache NetBeans 10, PHP) without signing up for the NetCat test program? Fra: Glenn Holmer Sendt: 28. september 2018 15:12 Til: net...@netbeans.incubator.apache.org; d...@netbeans.incubator.apache.org; us...@netbeans.incubator.a

HttpMonitor

2018-10-03 Thread Mark A. Claassen
What is the secret to getting the HTTP monitor to work with a non-bundled version of Tomcat? I looked into this a while ago and noticed it adds a custom "Valve" or something to Tomcat, but I was not able to get the configuration correct. I soon gave up on this, but really miss it. Is there a

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Emma Atkinson
I will try without using Netbeans but I do not have time to work on this until tomorrow. Thank you for devoting your time to helping me solve this. Emma On Wed, 3 Oct 2018 at 12:29, Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > Well, I'd suggest to first get it to work without

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Geertjan Wielenga
What I mean is that a starting point is to see whether what you've done works on the command line. I.e., forget NetBeans for the moment and try and build and run your solution on the command line and see if that works. Gj On Wed, Oct 3, 2018 at 1:51 PM Emma Atkinson wrote: > To recreate the tes

Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Emma Atkinson
To recreate the test case and Netbeans set up. - I created a Java Application using the new project function. I set it up to run on JDK 10. - I added a module-info.java file using a RMB on Project Navigator > Log4j2TestCase > Source Packages > New > Java Module Info... - I crea

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Geertjan Wielenga
Well, I'd suggest to first get it to work without any tooling at all. I.e., forget NetBeans for the moment and use the command line to set up a simple Java 9 multi-release app that makes use of Log4J. Possibly the problem is with Log4J and that's what you can find out by creating such an applicatio

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Emma Atkinson
Screenshot.png shows how I have set up Netbeans. I think you can see everything. I normally use the *import* org.apache.logging.log4j.Logger and *import* org.apache.logging.log4j.LogManager. The Log4j2 module-info.class file exports *org.apache.logging.log4j*. I have committed a version of the

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Geertjan Wielenga
OK, I believe this is the name of the JAR: log4j-api-2.11.1.jar Just trying to guess how to set up the project, i.e., guessing where to get the JARs from and which specific one to use. Gj On Wed, Oct 3, 2018 at 12:15 PM Geertjan Wielenga < geertjan.wiele...@googlemail.com> wrote: > I also see t

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Geertjan Wielenga
I also see this on https://logging.apache.org/log4j/2.0/download.html: To use Log4j 2 in your application make sure that both the API and Core jars are in the application’s classpath. Add the dependencies listed below to your classpath. 1. log4j-api-2.11.1.jar 2. log4j-core-2.11.1.jar I

Re: Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Geertjan Wielenga
Shouldn't the import statements be this: import org.apache.log4j.LogManager; import org.apache.log4j.Logger; ...and not this: import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; ...if you're using log4j-1.2-api-2.11.1.jar? Gj On Wed, Oct 3, 2018 at 11:56 AM Em

Netbeans ant build script not finding Log4j2 V2.11.1 module-info.class

2018-10-03 Thread Emma Atkinson
I cannot find a way to make this work, I hope you can help. I should be happy to be pointed to an existing answer *The Problem* I have a very simple Java application demonstrating the problem I am having with using the latest Log4j2 V2.11.1 as a module (log4j.api) and building it in Netbeans. Th