(Moving the thread from JIRA to the mailing list)
Hi Ron,
I don't know how your Maven setup look like.
If you are referencing the OpenCMIS client implementation
(chemistry-opencmis-client-impl), then this might work (untested):
<dependencies>
<dependency>
<groupId>org.apache.chemistry.opencmis</groupId>
<artifactId>chemistry-opencmis-client-impl</artifactId>
<version>0.8.0-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.apache.chemistry.opencmis</groupId>
<artifactId>chemistry-opencmis-client-bindings</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.chemistry.opencmis</groupId>
<artifactId>chemistry-opencmis-client-bindings-weblogic</artifactId>
<version>0.8.0-SNAPSHOT</version>
</dependency>
</dependencies>
The translation of this is:
Get the the client implementation except for the client bindings Jar.
Use the OpenCMIS Weblogic bindings Jar instead.
Florian