2009-11-09 01:20:48 +00: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>
|
2017-05-31 17:26:34 -07:00
|
|
|
<version>9.4.7-SNAPSHOT</version>
|
2009-11-09 01:20:48 +00: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>
|
2013-05-21 13:10:07 -05:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
2010-04-03 00:37:38 +00:00
|
|
|
<bundle-symbolic-name>${project.groupId}.boot.warurl</bundle-symbolic-name>
|
2010-03-30 18:45:31 +00:00
|
|
|
</properties>
|
2009-11-09 01:20:48 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-06-06 21:28:51 +02:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
2009-11-09 01:20:48 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2009-12-10 11:03:13 +00:00
|
|
|
|
2009-11-09 01:20:48 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-04-27 08:06:41 +10:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-Name>RFC66 War URL</Bundle-Name>
|
|
|
|
<Bundle-Activator>org.eclipse.jetty.osgi.boot.warurl.WarUrlActivator</Bundle-Activator>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-06-16 17:21:50 +00: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-09 01:20:48 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2010-04-27 19:28:44 +00:00
|
|
|
</project>
|