summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--branches/sca-java-1.3/distribution/pom.xml5
-rw-r--r--branches/sca-java-1.3/modules/binding-ws-axis2/pom.xml15
-rw-r--r--branches/sca-java-1.3/modules/domain-manager/pom.xml2
-rw-r--r--branches/sca-java-1.3/modules/interface-wsdl-java2wsdl/pom.xml9
-rw-r--r--branches/sca-java-1.3/modules/policy-security-ws/pom.xml20
5 files changed, 45 insertions, 6 deletions
diff --git a/branches/sca-java-1.3/distribution/pom.xml b/branches/sca-java-1.3/distribution/pom.xml
index 202b5f028a..1386fb50e0 100644
--- a/branches/sca-java-1.3/distribution/pom.xml
+++ b/branches/sca-java-1.3/distribution/pom.xml
@@ -229,6 +229,11 @@
<groupId>mx4j</groupId>
<artifactId>mx4j-remote</artifactId>
</exclusion>
+ <exclusion>
+ <!-- exclude backport-util-concurrent-2.2.jar since we are using version 3.0 -->
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </exclusion>
</exclusions>
</dependency>
</dependencies>
diff --git a/branches/sca-java-1.3/modules/binding-ws-axis2/pom.xml b/branches/sca-java-1.3/modules/binding-ws-axis2/pom.xml
index 76eb984863..a12aba3018 100644
--- a/branches/sca-java-1.3/modules/binding-ws-axis2/pom.xml
+++ b/branches/sca-java-1.3/modules/binding-ws-axis2/pom.xml
@@ -357,6 +357,10 @@
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -388,10 +392,19 @@
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
- </exclusion>
+ </exclusion>
+ <exclusion>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ <version>3.0</version>
+ </dependency>
+ <dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
diff --git a/branches/sca-java-1.3/modules/domain-manager/pom.xml b/branches/sca-java-1.3/modules/domain-manager/pom.xml
index fd0486f75a..8bfadf4936 100644
--- a/branches/sca-java-1.3/modules/domain-manager/pom.xml
+++ b/branches/sca-java-1.3/modules/domain-manager/pom.xml
@@ -80,7 +80,7 @@
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
- <version>1.2</version>
+ <version>1.1.1</version>
</dependency>
<dependency>
diff --git a/branches/sca-java-1.3/modules/interface-wsdl-java2wsdl/pom.xml b/branches/sca-java-1.3/modules/interface-wsdl-java2wsdl/pom.xml
index f140b0a089..8b189aa520 100644
--- a/branches/sca-java-1.3/modules/interface-wsdl-java2wsdl/pom.xml
+++ b/branches/sca-java-1.3/modules/interface-wsdl-java2wsdl/pom.xml
@@ -74,9 +74,18 @@
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ <version>3.0</version>
+ </dependency>
+ <dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
<version>1.3</version>
diff --git a/branches/sca-java-1.3/modules/policy-security-ws/pom.xml b/branches/sca-java-1.3/modules/policy-security-ws/pom.xml
index 504128c9cd..838a26cd31 100644
--- a/branches/sca-java-1.3/modules/policy-security-ws/pom.xml
+++ b/branches/sca-java-1.3/modules/policy-security-ws/pom.xml
@@ -79,14 +79,26 @@
<artifactId>axiom-impl</artifactId>
<version>1.2.5</version>
</dependency>
-
-
+
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-kernel</artifactId>
- <version>1.3</version>
- </dependency>
+ <version>1.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ <version>3.0</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.apache.neethi</groupId>