diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-08-08 16:10:21 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-08-08 16:10:21 +0000 |
commit | 5a9e16987c1cc70da67b824d204bf5ef06d3db82 (patch) | |
tree | 91d023ae16b9c84ec24610b51b7c06994b9aa02a | |
parent | fe3ca4426a2f3d7ec58057f175775e728f2d654b (diff) |
Some strangeness here. In unit tests there is a class not found exception for javax.jms.BytesMessage when Axis loads the JMS transport. Didn't used to happen but had to add these.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@802412 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/sca/modules/binding-sca-axis2-runtime/pom.xml | 13 | ||||
-rw-r--r-- | java/sca/modules/binding-ws-axis2/pom.xml | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/java/sca/modules/binding-sca-axis2-runtime/pom.xml b/java/sca/modules/binding-sca-axis2-runtime/pom.xml index 626b270134..bf6312cf2b 100644 --- a/java/sca/modules/binding-sca-axis2-runtime/pom.xml +++ b/java/sca/modules/binding-sca-axis2-runtime/pom.xml @@ -49,6 +49,19 @@ <artifactId>tuscany-binding-ws-wsdlgen</artifactId> <version>2.0-SNAPSHOT</version> </dependency> + + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + <version>1.1</version> + <!-- scope>provided</scope> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + </exclusion> + </exclusions--> + </dependency> <dependency> <groupId>javax.servlet</groupId> diff --git a/java/sca/modules/binding-ws-axis2/pom.xml b/java/sca/modules/binding-ws-axis2/pom.xml index 5f988cd8b0..1c5da1a481 100644 --- a/java/sca/modules/binding-ws-axis2/pom.xml +++ b/java/sca/modules/binding-ws-axis2/pom.xml @@ -387,6 +387,19 @@ <version>2.0-SNAPSHOT</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + <version>1.1</version> + <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> |