Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Jetty/Howto/Use Jetty with Ant"

< Jetty‎ | Howto
m (New page: {{Jetty Howto | introduction A new plugin is available in the /extras/ant location, which makes it possible to start a Jetty web server directly from the Ant build script, and, to embed t...)
 
m
Line 1: Line 1:
{{Jetty Howto
+
{{Jetty Howto
 
| introduction
 
| introduction
 
A new plugin is available in the /extras/ant location, which makes it possible to start a Jetty web server directly from the Ant build script, and, to embed the Jetty web server inside your build process. Its purpose is to provide almost the same functionality as the Jetty plugin for Maven: dynamic application reloading, working directly on web application sources, and a tight integration with the build system.
 
A new plugin is available in the /extras/ant location, which makes it possible to start a Jetty web server directly from the Ant build script, and, to embed the Jetty web server inside your build process. Its purpose is to provide almost the same functionality as the Jetty plugin for Maven: dynamic application reloading, working directly on web application sources, and a tight integration with the build system.
  
For impatient folks, there is already a [http://svn.codehaus.org/jetty-contrib/trunk/jetty-ant-demo/ demo provided in jetty-contrib repository] for the Ant Jetty plugin. It's good to compile Jetty before running these tests, because the demo depends on Jetty JARs from the Maven repository. Alternatively, you can download these JARs manually from one of the [http://maven.apache.org/guides/mini/guide-mirror-settings.html Maven repositories]. Please see build.xml file in jetty-ant-demo folder for a list of required JARs.
+
For impatient folks, there is already a [http:// http://svn.codehaus.org/jetty-contrib/jetty/branches/jetty-6.1.22-z5/contrib/jetty-ant-demo/demo provided in jetty-contrib repository] for the Ant Jetty plugin. It's good to compile Jetty before running these tests, because the demo depends on Jetty JARs from the Maven repository. Alternatively, you can download these JARs manually from one of the [http://maven.apache.org/guides/mini/guide-mirror-settings.html Maven repositories]. Please see build.xml file in jetty-ant-demo folder for a list of required JARs.
  
 
Modifying build.xml from jetty-ant-demo is also the easiest way to start playing with this plugin.
 
Modifying build.xml from jetty-ant-demo is also the easiest way to start playing with this plugin.

Revision as of 12:01, 21 September 2010



Introduction

{{{introduction}}}

Back to the top