Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2012-01-18 12:24:35 +0000
committerSimone Bordet2012-01-18 12:24:35 +0000
commit6a55f2c88292af8d06eeb8b01d3524f14116d7d6 (patch)
tree6860d5a27a064b1cc8c09ff8918713095f4fce0a /jetty-jndi
parent486af626354c423d9f946e8155aef6cbae252494 (diff)
downloadorg.eclipse.jetty.project-6a55f2c88292af8d06eeb8b01d3524f14116d7d6.tar.gz
org.eclipse.jetty.project-6a55f2c88292af8d06eeb8b01d3524f14116d7d6.tar.xz
org.eclipse.jetty.project-6a55f2c88292af8d06eeb8b01d3524f14116d7d6.zip
368948 - POM for jetty-jndi references unknown version for javax.activation.
Diffstat (limited to 'jetty-jndi')
-rw-r--r--jetty-jndi/pom.xml24
1 files changed, 12 insertions, 12 deletions
diff --git a/jetty-jndi/pom.xml b/jetty-jndi/pom.xml
index bd9764512d..74a4faa039 100644
--- a/jetty-jndi/pom.xml
+++ b/jetty-jndi/pom.xml
@@ -66,26 +66,26 @@
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
- <exclusions>
- <exclusion>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- </exclusion>
- </exclusions>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
<profiles>
<profile>
<id>below-jdk1.6</id>
<activation>
- <jdk>!1.6</jdk>
+ <jdk>(,1.6)</jdk>
</activation>
<dependencies>
- <dependency>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- <version>${javax-activation-version}</version>
- </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.1</version>
+ </dependency>
</dependencies>
</profile>
</profiles>

Back to the top