There is no fixed timeline.
But it's about time to trigger a new release...
Florian
What is the timeline for the final 0.8.0 release?
Ron DiFrango
Director / Architect | CapTech
(804) 855-9196 | [email protected]
________________________________________
From: Florian Müller [[email protected]]
Sent: Friday, August 03, 2012 9:59 AM
To: Ron DiFrango; [email protected]
Subject: Weblogic module (CMIS-543)
(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