Could not find artifact org.openjfx:javafx-web

2022-04-14 Thread Richard Schmidt
I am new to maven, NetBeans 13, and gluon and graalvm. I just created a a gluon javafx project for desktop platform. I needed to add a dependency to POM.XML file for org.openjfx, javafx-web. Most of the time I get the “could not find artifact” javafx-web. Once in a while it works, but not for lo

Maven-ant-task get confused between snapshot and release repositories

2011-04-06 Thread richard schmidt
I am using ant to deploy artifacts to our Nexus repostory. Yes, I would love to be using Maven but not with this horrible project! The ant magic looks like

Re: Maven jetty plugin and excluding activation jar

2009-10-15 Thread richard schmidt
Okay, get it now...thanks for the hint! On Thu, Oct 15, 2009 at 4:16 PM, richard schmidt wrote: > I am sorry but I dont understand what you mean? > > > On Thu, Oct 15, 2009 at 3:24 PM, Wayne Fay wrote: > >> > How can I configure the maven-jetty-plugin to exclude the

Re: Maven jetty plugin and excluding activation jar

2009-10-14 Thread richard schmidt
I am sorry but I dont understand what you mean? On Thu, Oct 15, 2009 at 3:24 PM, Wayne Fay wrote: > > How can I configure the maven-jetty-plugin to exclude the activation.jar > > when jetty starts up? > > Proper usage of profiles is nearly always the solution to these kinds > of problems. > > Wa

Maven jetty plugin and excluding activation jar

2009-10-14 Thread richard schmidt
How do I exclude the activation jar when i start up jetty using the maven-jetty-plugin:run goal? The WAR we are developing is to be deployed to a tomcat server, which does NOT include the activation.jar in its lib directory. This means that we need to include the jar in the project WAR file. Jetty

Maven webStart - issuing new versions.

2009-05-13 Thread richard schmidt
Hello I am using the Webstart plugin to distribute a Swing application. Works fine untill I need to issue a new version of my application. The application gets download onto the client machine correctly, but then web start fails with the following message "Error: JAR resources in JNLP file are no

Re: Starting a jetty server

2009-01-19 Thread richard schmidt
I am using the plug in to load an embedded server, so it will use the jars supplied by the repository. I have set jetty to start on port , which is not in use... The puzzling this is that the line "[INFO] [jetty:run {execution: start-jetty}]" does not appear in the hudson console - its as if t

Starting a jetty server

2009-01-19 Thread richard schmidt
Hi As part of my unit tests I use the maven-jetty-plugin to start up a web server. If I run maven from my pc it all works correctly and I get a console like [INFO] [jetty:run {execution: start-jetty}] [INFO] Configuring Jetty for project: ICECream [INFO] Webapp source directory = C:\Workspace_svn

Maven looking for repository under root

2009-01-13 Thread richard schmidt
Hi We have installed maven on a Linux pc following the instructions given on the web site. We expected maven to create a repository (.m2) directory under /home/username but instead we had to manually create a .m2 directory under root - which is not a very good idea! Why isnt it creating it under

Re: Starting a jetty server for client side tests

2008-12-11 Thread richard schmidt
Gave it a try - it almost works! Based on the example projects, I tried the following 1) Added a normal dependency ( icecream.war.version} is defined elsewhere com.metservice ICECream ${icecream.war.version} war 2) Added the cargo plug org.codehaus.cargo cargo-maven2-plugin t

Starting a jetty server for client side tests

2008-12-11 Thread richard schmidt
I have a WAR project that exposes some web services I also have a JAR project that acts as a client application for the web services. The client application makes http requests to the web services. To run unit tests I need to set up a jetty server running the web services. I have tried the follo