geronimo-jetty-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.geronimo.modules</groupId> <artifactId>geronimo-jetty-builder</artifactId> <version>1.2-beta</version> </dependency>
<?xml version="1.0" encoding="ISO-8859-1"?><project> <parent> <artifactId>modules</artifactId> <groupId>org.apache.geronimo.modules</groupId> <version>1.2-beta</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>geronimo-jetty-builder</artifactId> <name>Geronimo :: Jetty :: Builder</name> <version>1.2-beta</version> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xmlbeans-maven-plugin</artifactId> <configuration> <sourceSchemas>geronimo-jetty-1.2.xsd,geronimo-jetty-config-1.0.xsd</sourceSchemas> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <mkdir dir="${pom.basedir}/target/clover/classes"></mkdir> <copy todir="${pom.basedir}/target/clover/classes"> <fileset dir="${pom.basedir}/target/classes"> <include name="schemaorg_apache_xmlbeans/**"></include> </fileset> </copy> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-web-builder</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-jetty</artifactId> <version>1.2-beta</version> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>