2009-11-02 19:41:22 -05: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.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-project</artifactId>
|
2010-04-27 12:11:20 -04:00
|
|
|
<version>7.1.0.RC1-SNAPSHOT</version>
|
2009-11-02 19:41:22 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-boot-jsp</artifactId>
|
|
|
|
<name>Jetty :: OSGi :: Boot JSP</name>
|
|
|
|
<description>Jetty OSGi Boot JSP bundle</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
2010-04-02 20:37:38 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.boot.jsp</bundle-symbolic-name>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2009-11-02 19:41:22 -05:00
|
|
|
<dependencies>
|
2010-03-27 14:55:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
</dependency>
|
2009-11-02 19:41:22 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-boot</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2009-11-07 09:14:47 -05:00
|
|
|
<scope>provided</scope>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>osgi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>services</artifactId>
|
2009-11-07 09:14:47 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jsp-2.1-glassfish</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jsp-api-2.1-glassfish</artifactId>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependency>
|
2009-12-10 22:27:18 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</dependency>
|
2009-11-02 19:41:22 -05:00
|
|
|
</dependencies>
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2009-11-07 09:14:47 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2010-03-05 16:14:22 -05:00
|
|
|
<replace file="target/classes/META-INF/MANIFEST.MF" token="Bundle-Version: 7.0.2.qualifier" value="Bundle-Version: ${parsedVersion.osgiVersion}" />
|
2009-11-07 09:14:47 -05:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>artifact-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>test-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2009-12-10 06:03:13 -05:00
|
|
|
<archive>
|
2009-11-07 09:14:47 -05:00
|
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-03-30 14:45:31 -04:00
|
|
|
<!-- always include the sources to be able to prepare the eclipse-jetty-SDK feature
|
|
|
|
with a snapshot. -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
2009-11-07 09:14:47 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2010-03-05 16:14:22 -05:00
|
|
|
</project>
|