2010-07-27 18:08:29 -04: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>
|
2016-04-29 14:47:15 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2010-07-27 18:08:29 -04:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>test-jetty-osgi</artifactId>
|
|
|
|
<name>Jetty :: OSGi :: Test</name>
|
2013-05-21 14:10:07 -04:00
|
|
|
<description>Jetty OSGi Integration test</description>
|
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2010-07-27 18:08:29 -04:00
|
|
|
<properties>
|
2015-02-10 22:20:06 -05:00
|
|
|
<bundle-symbolic-name>${project.groupId}.boot.test.osgi</bundle-symbolic-name>
|
2012-02-01 18:25:08 -05:00
|
|
|
<jetty-orbit-url>http://download.eclipse.org/jetty/orbit/</jetty-orbit-url>
|
2010-07-27 18:08:29 -04:00
|
|
|
<assembly-directory>target/distribution</assembly-directory>
|
2014-11-13 03:16:52 -05:00
|
|
|
<exam.version>3.5.0</exam.version>
|
2014-04-09 21:23:13 -04:00
|
|
|
<url.version>1.5.2</url.version>
|
2012-10-06 05:26:14 -04:00
|
|
|
<injection.bundle.version>1.0</injection.bundle.version>
|
2010-07-27 18:08:29 -04:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2012-10-06 05:26:14 -04:00
|
|
|
<!-- Pax Exam Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam</artifactId>
|
|
|
|
<version>${exam.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-inject</artifactId>
|
|
|
|
<version>${exam.version}</version>
|
|
|
|
<scope>test</scope>
|
2012-01-31 16:00:47 -05:00
|
|
|
</dependency>
|
2012-02-01 10:59:00 -05:00
|
|
|
|
2015-02-10 22:20:06 -05:00
|
|
|
<!-- use the forked container so we can pass it system properties eg for alpn -->
|
2012-01-31 16:00:47 -05:00
|
|
|
<dependency>
|
2012-10-06 05:26:14 -04:00
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-container-forked</artifactId>
|
|
|
|
<version>${exam.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-04-09 21:23:13 -04:00
|
|
|
|
2012-10-06 05:26:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-junit4</artifactId>
|
|
|
|
<version>${exam.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-link-mvn</artifactId>
|
|
|
|
<version>${exam.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.url</groupId>
|
|
|
|
<artifactId>pax-url-aether</artifactId>
|
|
|
|
<version>${url.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-04-07 07:49:18 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.tinybundles</groupId>
|
|
|
|
<artifactId>tinybundles</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-04-09 21:23:13 -04:00
|
|
|
|
2012-10-06 05:26:14 -04:00
|
|
|
<!-- OSGi R4 frameworks -->
|
2014-04-09 21:23:13 -04:00
|
|
|
<!--
|
2012-10-06 05:26:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>org.apache.felix.framework</artifactId>
|
2014-04-09 21:23:13 -04:00
|
|
|
<version>4.4.0</version>
|
2012-10-06 05:26:14 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-04-09 21:23:13 -04:00
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.enterprise</artifactId>
|
|
|
|
<version>5.0.0</version>
|
2012-10-06 05:26:14 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-05-03 21:04:16 -04:00
|
|
|
-->
|
2012-10-06 05:26:14 -04:00
|
|
|
<dependency>
|
2014-04-09 21:23:13 -04:00
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>osgi</artifactId>
|
2014-11-13 03:16:52 -05:00
|
|
|
<version>3.10.0-v20140606-1445</version>
|
2012-10-06 05:26:14 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-03-09 22:41:05 -04:00
|
|
|
<dependency>
|
2014-04-09 21:23:13 -04:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
|
|
|
<scope>test</scope>
|
2014-03-09 22:41:05 -04:00
|
|
|
</dependency>
|
2014-04-09 21:23:13 -04:00
|
|
|
|
|
|
|
<!-- Jetty OSGi Deps -->
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-boot</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2010-07-27 18:08:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-boot-jsp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2010-07-27 18:08:29 -04:00
|
|
|
</dependency>
|
2014-09-03 18:16:35 -04:00
|
|
|
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>jetty-httpservice</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2016-08-04 00:18:28 -04:00
|
|
|
<!--
|
2014-04-09 21:23:13 -04:00
|
|
|
<dependency>
|
2014-09-03 18:16:35 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-osgi-servlet-api</artifactId>
|
2014-12-12 09:59:03 -05:00
|
|
|
<version>3.1.0.M3</version>
|
2014-04-09 21:23:13 -04:00
|
|
|
</dependency>
|
2016-08-04 00:18:28 -04:00
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2014-09-03 18:16:35 -04:00
|
|
|
|
2014-04-09 21:23:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
<scope>test</scope>
|
2010-07-27 18:08:29 -04:00
|
|
|
</dependency>
|
2014-03-27 02:08:57 -04:00
|
|
|
|
2014-04-09 21:23:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-atinject_1.0_spec</artifactId>
|
|
|
|
<version>${injection.bundle.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.aries.spifly</groupId>
|
|
|
|
<artifactId>org.apache.aries.spifly.dynamic.bundle</artifactId>
|
2014-07-25 01:32:41 -04:00
|
|
|
<version>1.0.1</version>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-07-25 01:32:41 -04:00
|
|
|
|
2014-09-03 18:16:35 -04:00
|
|
|
<dependency>
|
2015-02-18 03:24:29 -05:00
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
|
|
|
<version>1.2.2</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
|
|
<artifactId>jstl-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>el-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-09-03 18:16:35 -04:00
|
|
|
</dependency>
|
2014-03-27 02:08:57 -04:00
|
|
|
|
2015-02-18 03:24:29 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
|
|
|
<version>1.2.0.v201105211821</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2014-03-27 02:08:57 -04:00
|
|
|
|
2012-01-31 16:00:47 -05:00
|
|
|
<!-- Jetty Deps -->
|
2014-03-09 22:41:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2012-01-31 16:00:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2012-09-24 01:04:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-xml</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2011-01-06 13:04:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
2015-09-16 05:13:47 -04:00
|
|
|
<version>${project.version}</version>
|
2010-07-27 18:08:29 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2012-11-13 14:50:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
2012-09-24 01:04:57 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2012-11-13 14:50:27 -05:00
|
|
|
<artifactId>websocket-servlet</artifactId>
|
2012-09-24 01:04:57 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2010-07-27 18:08:29 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2013-09-02 03:13:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.websocket</groupId>
|
|
|
|
<artifactId>javax.websocket-api</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2014-03-09 22:41:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>javax-websocket-server-impl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>javax-websocket-client-impl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2012-10-06 05:26:14 -04:00
|
|
|
<dependency>
|
2015-02-10 22:20:06 -05:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
2012-10-06 05:26:14 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2013-03-05 00:50:22 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
2014-03-20 07:09:54 -04:00
|
|
|
<artifactId>jetty-osgi-alpn</artifactId>
|
2013-03-05 00:50:22 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-04-03 01:40:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-09-02 03:13:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2013-03-05 00:50:22 -05:00
|
|
|
|
2012-03-06 20:14:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2014-04-09 21:23:13 -04:00
|
|
|
|
2012-01-31 16:00:47 -05:00
|
|
|
<!-- Eclipse OSGi Deps -->
|
2010-07-27 18:08:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>test-jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>webbundle</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-09-03 18:16:35 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-spec-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2014-09-05 03:49:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-container-initializer</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2016-07-19 22:26:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>test-jetty-osgi-fragment</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
2014-09-05 03:49:17 -04:00
|
|
|
</dependency>
|
2016-07-27 06:12:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>test-jetty-osgi-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-09-05 03:49:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-mock-resources</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2013-02-21 04:13:45 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>test-jetty-osgi-context</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
|
|
|
<artifactId>test-jetty-osgi-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-11-13 14:50:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-06-06 15:28:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-07-27 18:08:29 -04:00
|
|
|
</dependencies>
|
2016-06-06 15:28:51 -04:00
|
|
|
|
2010-07-27 18:08:29 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2012-10-06 05:26:14 -04:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2012-01-31 16:00:47 -05:00
|
|
|
<configuration>
|
2012-10-06 05:26:14 -04:00
|
|
|
<!-- No point defining -Xbootclasspath as the actual OSGi VM is run as a forked process by pax-exam -->
|
2014-03-20 07:09:54 -04:00
|
|
|
<!-- But we do pass the sys property of the alpn-boot jar so that it can be configued inside tests -->
|
|
|
|
<argLine>-Dmortbay-alpn-boot=${settings.localRepository}/org/mortbay/jetty/alpn/alpn-boot/${alpn.version}/alpn-boot-${alpn.version}.jar</argLine>
|
2012-01-31 16:00:47 -05:00
|
|
|
</configuration>
|
2010-07-27 18:08:29 -04:00
|
|
|
</plugin>
|
2012-10-06 05:26:14 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.servicemix.tooling</groupId>
|
|
|
|
<artifactId>depends-maven-plugin</artifactId>
|
2010-07-27 18:08:29 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2012-10-06 05:26:14 -04:00
|
|
|
<id>generate-depends-file</id>
|
2012-01-31 16:00:47 -05:00
|
|
|
<goals>
|
2012-10-06 05:26:14 -04:00
|
|
|
<goal>generate-depends-file</goal>
|
2012-01-31 16:00:47 -05:00
|
|
|
</goals>
|
2010-07-27 18:08:29 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2012-01-31 16:00:47 -05:00
|
|
|
</plugin>
|
2010-07-27 18:08:29 -04:00
|
|
|
</plugins>
|
2012-10-15 07:05:33 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.apache.servicemix.tooling</groupId>
|
|
|
|
<artifactId>depends-maven-plugin</artifactId>
|
|
|
|
<versionRange>[1.2,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>generate-depends-file</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2012-10-15 14:09:56 -04:00
|
|
|
<ignore />
|
2012-10-15 07:05:33 -04:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2010-07-27 18:08:29 -04:00
|
|
|
</build>
|
2016-06-06 15:28:51 -04:00
|
|
|
|
2012-09-06 23:46:51 -04:00
|
|
|
</project>
|