Hi Ron,
It's here:
https://repository.apache.org/index.html#nexus-search;quick~opencmis%20weblogic
- Florian
Florian,
We are just now getting around to testing this patch and we were trying to find
the 0.8.0-snapshot version in Maven central, but it does not appear to be
there. Is it in another repo or is there a specific version we should be after?
Thanks,
Ron DiFrango
Director / Architect | CapTech
(804) 855-9196 | [email protected]
________________________________________
From: Ron DiFrango
Sent: Monday, August 06, 2012 9:17 AM
To: Florian Müller
Subject: RE: Weblogic module (CMIS-543)
Florian,
Definitely, I hoping to test this this week to prove it out.
Thanks,
Ron DiFrango
Director / Architect | CapTech
(804) 855-9196 | [email protected]
________________________________________
From: Florian Müller [[email protected]]
Sent: Monday, August 06, 2012 7:02 AM
To: Ron DiFrango
Subject: RE: Weblogic module (CMIS-543)
Hi Ron,
If it works, could you please add a comment to the JIRA issue? I would
like to close it.
And could you do me another favor and check if it still work when you
exclude this:
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>2.1.7</version>
</dependency>
This should be included in Weblogic anyway. So (I hope) there is no
need to add it as a dependency.
Thanks,
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