2009-11-08 20:20:48 -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-03-31 12:46:40 -04:00
|
|
|
<version>7.1.0-SNAPSHOT</version>
|
2009-11-08 20:20:48 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-boot-warurl</artifactId>
|
|
|
|
<name>Jetty :: OSGi :: Boot :: Warurl</name>
|
|
|
|
<description>Jetty OSGi Boot-Warurl bundle</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.warurl</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-11-08 20:20:48 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>osgi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2009-11-08 20:20:48 -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-08 20:20:48 -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-08 20:20:48 -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-08 20:20:48 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2010-03-05 16:14:22 -05:00
|
|
|
</project>
|