Author: jlaskowski
Date: Mon Mar 20 10:56:44 2006
New Revision: 387275
URL: http://svn.apache.org/viewcvs?rev=387275&view=rev
Log:
GERONIMO-1732 - Module migration to Maven 2: jetty-builder
Submitted by: Prasad Kashyap
Added:
geronimo/trunk/modules/jetty-builder/pom.xml (with props)
Modified:
geronimo/trunk/pom.xml
Added: geronimo/trunk/modules/jetty-builder/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/jetty-builder/pom.xml?rev=387275&view=auto
==============================================================================
--- geronimo/trunk/modules/jetty-builder/pom.xml (added)
+++ geronimo/trunk/modules/jetty-builder/pom.xml Mon Mar 20 10:56:44 2006
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+
+ Copyright 2006 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+ <parent>
+ <groupId>org.apache.geronimo</groupId>
+ <artifactId>geronimo</artifactId>
+ <version>1.2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>geronimo-jetty-builder</artifactId>
+ <name>Geronimo :: Jetty :: Builder</name>
+ <version>${geronimoVersion}</version>
+ <description>Geronimo Jetty Deployer</description>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xmlbeans-maven-plugin</artifactId>
+ <version>${xmlbeansMavenPluginVersion}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>xmlbeans</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <download>true</download>
+ <schemaDirectory>src/schema</schemaDirectory>
+ <xmlConfigs>
+ <xmlConfig implementation="java.io.File">src/schema/xmlconfig.xml</xmlConfig>
+ </xmlConfigs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>xmlbeans</groupId>
+ <artifactId>xbean</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>stax</groupId>
+ <artifactId>stax</artifactId>
+ <version>1.1.1-dev</version>
+ <scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>xmlbeans</groupId>
+ <artifactId>xmlbeans-jsr173-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo</groupId>
+ <artifactId>geronimo-web-builder</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo</groupId>
+ <artifactId>geronimo-jetty</artifactId>
+ <version>${geronimoVersion}</version>
+ </dependency>
+ </dependencies>
+</project>
+
Propchange: geronimo/trunk/modules/jetty-builder/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/trunk/modules/jetty-builder/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: geronimo/trunk/modules/jetty-builder/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: geronimo/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/pom.xml?rev=387275&r1=387274&r2=387275&view=diff
==============================================================================
--- geronimo/trunk/pom.xml (original)
+++ geronimo/trunk/pom.xml Mon Mar 20 10:56:44 2006
@@ -781,6 +781,7 @@
<module>modules/j2ee-builder</module>
<module>modules/j2ee-schema</module>
<module>modules/jetty</module>
+ <module>modules/jetty-builder</module>
<module>modules/javamail-transport</module>
<module>modules/jmx-remoting</module>
<module>modules/kernel</module>
|