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>
|
2012-04-13 16:29:14 -04:00
|
|
|
<version>7.6.4-SNAPSHOT</version>
|
2009-11-08 20:20:48 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<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>
|
2010-04-02 20:37:38 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.boot.warurl</bundle-symbolic-name>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2009-11-08 20:20:48 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-05-20 04:33:57 -04:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
2009-11-08 20:20:48 -05:00
|
|
|
</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>
|
2011-11-30 00:27:30 -05:00
|
|
|
<replace file="target/classes/META-INF/MANIFEST.MF" token="Bundle-Version: 7.3.0.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>
|
2010-07-05 09:50:26 -04:00
|
|
|
<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>
|
2009-11-08 20:20:48 -05:00
|
|
|
<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-06-16 13:21:50 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.osgi.boot.warurl.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-11-08 20:20:48 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2010-04-27 15:28:44 -04:00
|
|
|
</project>
|