2009-03-24 17:07:27 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2010-06-10 20:17:47 -04:00
|
|
|
<version>7.1.5-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
2009-07-21 20:51:14 -04:00
|
|
|
<name>Jetty :: Webapp Application Support</name>
|
|
|
|
<description>Jetty web application support</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.webapp</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-03-24 17:07:27 -04:00
|
|
|
<build>
|
2009-04-02 05:22:42 -04:00
|
|
|
<resources>
|
|
|
|
<resource><directory>src/main/resources</directory></resource>
|
|
|
|
<resource><directory>target/generated-resources</directory></resource>
|
|
|
|
</resources>
|
2009-03-24 17:07:27 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2009-04-02 05:22:42 -04:00
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2009-04-03 11:44:26 -04:00
|
|
|
<copy failonerror="true" file="${basedir}/src/main/config/etc/webdefault.xml" toFile="${project.build.directory}/generated-resources/org/eclipse/jetty/webapp/webdefault.xml" />
|
2009-04-02 05:22:42 -04:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin
|
|
|
|
</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>config.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2009-04-02 05:22:42 -04:00
|
|
|
<version>${felix.bundle.version}
|
|
|
|
</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
2009-04-01 14:06:52 -04:00
|
|
|
</execution>
|
2009-03-24 17:07:27 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<!--
|
|
|
|
Required for OSGI
|
|
|
|
-->
|
2009-04-02 05:22:42 -04:00
|
|
|
<groupId>org.apache.maven.plugins
|
|
|
|
</groupId>
|
2009-03-24 17:07:27 -04:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
2009-04-02 05:22:42 -04:00
|
|
|
<archive>
|
|
|
|
<manifestFile>
|
|
|
|
${project.build.outputDirectory}/META-INF/MANIFEST.MF
|
|
|
|
</manifestFile>
|
2009-03-24 17:07:27 -04:00
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-04-02 05:22:42 -04:00
|
|
|
</plugins>
|
2009-03-24 17:07:27 -04:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-xml</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2010-05-13 11:55:25 -04:00
|
|
|
<version>${junit4-version}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|