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>
|
2019-07-11 00:19:45 -04:00
|
|
|
<version>10.0.0-alpha0</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>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
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>
|
2016-06-06 15:28:51 -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>
|
2012-04-26 18:06:41 -04:00
|
|
|
<plugin>
|
2019-06-24 11:42:39 -04:00
|
|
|
<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>
|
2012-04-26 18:06:41 -04:00
|
|
|
</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>
|
2010-04-27 15:28:44 -04:00
|
|
|
</project>
|