diff options
| author | jesus m. rodriguez <jesusr@redhat.com> | 2009-06-25 17:26:54 -0400 |
|---|---|---|
| committer | jesus m. rodriguez <jesusr@redhat.com> | 2009-06-25 17:28:49 -0400 |
| commit | 90f4faf98b9dbca1b041de6ccf0180b8ddf924a5 (patch) | |
| tree | 05a09ae7c13865ddb6e347d9c585b4cdaf1e8d10 /proxy/code/webapp | |
| parent | d2f592429c8023d79f6ce9b43ce3ec081badc55c (diff) | |
cleanup of build files.
rename candlepin-home to candlepin.home.
removed basedir from <project ...> entry so that it defaults to basedir
of the build.xml file. This was needed because we switched to build.properties
so what used to be set via property ... location= no longer worked.
commented out currently unneeded jars from ivy.xml
Diffstat (limited to 'proxy/code/webapp')
| -rw-r--r-- | proxy/code/webapp/WEB-INF/web.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/proxy/code/webapp/WEB-INF/web.xml b/proxy/code/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..2b773ef --- /dev/null +++ b/proxy/code/webapp/WEB-INF/web.xml @@ -0,0 +1,39 @@ +<web-app xmlns= "http://java.sun.com/xml/ns/j2ee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" + version="2.4"> + <!-- + ======================================================================= + FILTERS + ======================================================================= + --> + <!-- + ======================================================================= + FILTER MAPPINGS + ======================================================================= + --> + <!-- + ======================================================================= + LISTENERS + ======================================================================= + --> + <!-- + ======================================================================= + SERVLETS + ======================================================================= + --> + <servlet> + <servlet-name>Jersey Web Application</servlet-name> + <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class> + </servlet> + + <!-- + ======================================================================= + SERVLET MAPPINGS + ======================================================================= + --> + <servlet-mapping> + <servlet-name>Jersey Web Application</servlet-name> + <url-pattern>/*</url-pattern> + </servlet-mapping> +</web-app> |
