Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStuart McCulloch2015-01-28 15:48:18 +0000
committerStuart McCulloch2015-01-28 15:48:18 +0000
commit8afc36cd7f1b5caf0c18b9b25b6194f1451eb59a (patch)
tree53e4728465942dceb7fc07e64c147a1635d35cbf
parentb84e5c297d45fcf73b6149f4cbc74a8f799e3bdc (diff)
downloadorg.eclipse.sisu.plexus-8afc36cd7f1b5caf0c18b9b25b6194f1451eb59a.tar.gz
org.eclipse.sisu.plexus-8afc36cd7f1b5caf0c18b9b25b6194f1451eb59a.tar.xz
org.eclipse.sisu.plexus-8afc36cd7f1b5caf0c18b9b25b6194f1451eb59a.zip
Use 'test-guice-version' property to run tests against different versions of Guice
-rw-r--r--org.eclipse.sisu.plexus.tests/pom.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.sisu.plexus.tests/pom.xml b/org.eclipse.sisu.plexus.tests/pom.xml
index be6477e..fb679c8 100644
--- a/org.eclipse.sisu.plexus.tests/pom.xml
+++ b/org.eclipse.sisu.plexus.tests/pom.xml
@@ -22,11 +22,15 @@
<artifactId>org.eclipse.sisu.plexus.tests</artifactId>
+ <properties>
+ <test-guice-version>3.0</test-guice-version>
+ </properties>
+
<dependencies>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
- <version>3.0</version>
+ <version>${test-guice-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.sisu</groupId>

Back to the top