diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-08-27 17:57:15 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-08-27 17:57:15 +0000 |
commit | 8387ddd7483ef555765f6295de1eebdc33384920 (patch) | |
tree | c6396b2742bdd3c0e8cadac855202dbe166ea996 /java/sca | |
parent | 0237e9c85245ae1236c9644c1c15f7e7053cfd81 (diff) |
When running binding-sca-axis unit tests in Eclipse I was getting javax.jms not found from Axis. Was working OK in maven. I added the package import to the Tuscany module manifest and this seems to get the tests working for me in Eclipse. It not immediately clear to me how changing this bundle helps out the Axis bundle but I've lost track a bit of the complex relationship between tuscany and axis bundles so need to look closer. This may help others in the mean time.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@808554 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | java/sca/modules/binding-sca-axis2-runtime/META-INF/MANIFEST.MF | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/sca/modules/binding-sca-axis2-runtime/META-INF/MANIFEST.MF b/java/sca/modules/binding-sca-axis2-runtime/META-INF/MANIFEST.MF index ac355e0f33..b26b8a0cbd 100644 --- a/java/sca/modules/binding-sca-axis2-runtime/META-INF/MANIFEST.MF +++ b/java/sca/modules/binding-sca-axis2-runtime/META-INF/MANIFEST.MF @@ -9,9 +9,11 @@ Bnd-LastModified: 1225397165593 Bundle-ManifestVersion: 2
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt
Bundle-Description: Apache Tuscany SCA Default Binding Model
-Import-Package: javax.xml.namespace,
+Import-Package: javax.jms;version="1.1.0",
+ javax.xml.namespace,
javax.xml.stream;resolution:=optional,
org.apache.axiom.om,
+ org.apache.commons.fileupload;version="1.2.0",
org.apache.tuscany.sca.assembly;version="2.0.0",
org.apache.tuscany.sca.assembly.builder;version="2.0.0",
org.apache.tuscany.sca.assembly.xml;version="2.0.0";resolution:=optional,
|