diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2014-03-29 10:20:26 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-03-29 20:03:51 +0100 |
commit | bb9a4850b59b95800c63ab78c141ce4fb4220eb8 (patch) | |
tree | 149888dd558b97be2c231bfc8ec5c9869f1a1749 | |
parent | 32ff57a2b2b9480f4d374a2592fada7f720b124f (diff) | |
download | jgit-bb9a4850b59b95800c63ab78c141ce4fb4220eb8.tar.gz jgit-bb9a4850b59b95800c63ab78c141ce4fb4220eb8.zip |
Make sure we include the Java 7 module in tests when using JDK 8
Change-Id: Idfb3b16725d8f2ad25338dd0910fb1334c00cde4
-rw-r--r-- | org.eclipse.jgit.pgm.test/pom.xml | 2 | ||||
-rw-r--r-- | org.eclipse.jgit.pgm/pom.xml | 2 | ||||
-rw-r--r-- | org.eclipse.jgit.test/pom.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit.pgm.test/pom.xml b/org.eclipse.jgit.pgm.test/pom.xml index 24230bafd5..830f512ee6 100644 --- a/org.eclipse.jgit.pgm.test/pom.xml +++ b/org.eclipse.jgit.pgm.test/pom.xml @@ -64,7 +64,7 @@ <profile> <id>jgit.java7</id> <activation> - <jdk>1.7</jdk> + <jdk>[1.7,)</jdk> </activation> <dependencies> <dependency> diff --git a/org.eclipse.jgit.pgm/pom.xml b/org.eclipse.jgit.pgm/pom.xml index b2d4262da2..8ef89ce426 100644 --- a/org.eclipse.jgit.pgm/pom.xml +++ b/org.eclipse.jgit.pgm/pom.xml @@ -112,7 +112,7 @@ <profile> <id>java7</id> <activation> - <jdk>1.7</jdk> + <jdk>[1.7,)</jdk> </activation> <dependencies> <dependency> diff --git a/org.eclipse.jgit.test/pom.xml b/org.eclipse.jgit.test/pom.xml index 47e47b447c..5e011f9aba 100644 --- a/org.eclipse.jgit.test/pom.xml +++ b/org.eclipse.jgit.test/pom.xml @@ -66,7 +66,7 @@ <profile> <id>jgit.java7</id> <activation> - <jdk>1.7</jdk> + <jdk>[1.7,)</jdk> </activation> <dependencies> <dependency> |