Fixed param name after review
Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
6590dfe832
commit
f2f6598ddc
|
@ -14,8 +14,8 @@
|
||||||
<bundle-symbolic-name>${project.groupId}.boot.test.osgi</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.boot.test.osgi</bundle-symbolic-name>
|
||||||
<jetty-orbit-url>http://download.eclipse.org/jetty/orbit/</jetty-orbit-url>
|
<jetty-orbit-url>http://download.eclipse.org/jetty/orbit/</jetty-orbit-url>
|
||||||
<assembly-directory>target/distribution</assembly-directory>
|
<assembly-directory>target/distribution</assembly-directory>
|
||||||
<exam.version>4.13.0</exam.version>
|
<pax.exam.version>4.13.0</pax.exam.version>
|
||||||
<url.version>2.5.4</url.version>
|
<pax.url.version>2.5.4</pax.url.version>
|
||||||
<injection.bundle.version>1.0</injection.bundle.version>
|
<injection.bundle.version>1.0</injection.bundle.version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -23,38 +23,38 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.exam</groupId>
|
<groupId>org.ops4j.pax.exam</groupId>
|
||||||
<artifactId>pax-exam</artifactId>
|
<artifactId>pax-exam</artifactId>
|
||||||
<version>${exam.version}</version>
|
<version>${pax.exam.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.exam</groupId>
|
<groupId>org.ops4j.pax.exam</groupId>
|
||||||
<artifactId>pax-exam-inject</artifactId>
|
<artifactId>pax-exam-inject</artifactId>
|
||||||
<version>${exam.version}</version>
|
<version>${pax.exam.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Use the forked container so we can pass it system properties eg for alpn -->
|
<!-- Use the forked container so we can pass it system properties eg for alpn -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.exam</groupId>
|
<groupId>org.ops4j.pax.exam</groupId>
|
||||||
<artifactId>pax-exam-container-forked</artifactId>
|
<artifactId>pax-exam-container-forked</artifactId>
|
||||||
<version>${exam.version}</version>
|
<version>${pax.exam.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.exam</groupId>
|
<groupId>org.ops4j.pax.exam</groupId>
|
||||||
<artifactId>pax-exam-junit4</artifactId>
|
<artifactId>pax-exam-junit4</artifactId>
|
||||||
<version>${exam.version}</version>
|
<version>${pax.exam.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.exam</groupId>
|
<groupId>org.ops4j.pax.exam</groupId>
|
||||||
<artifactId>pax-exam-link-mvn</artifactId>
|
<artifactId>pax-exam-link-mvn</artifactId>
|
||||||
<version>${exam.version}</version>
|
<version>${pax.exam.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.url</groupId>
|
<groupId>org.ops4j.pax.url</groupId>
|
||||||
<artifactId>pax-url-aether</artifactId>
|
<artifactId>pax-url-aether</artifactId>
|
||||||
<version>${url.version}</version>
|
<version>${pax.url.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ops4j.pax.url</groupId>
|
<groupId>org.ops4j.pax.url</groupId>
|
||||||
<artifactId>pax-url-wrap</artifactId>
|
<artifactId>pax-url-wrap</artifactId>
|
||||||
<version>${url.version}</version>
|
<version>${pax.url.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in New Issue