You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2012/08/03 09:58:14 UTC

svn commit: r1368823 - in /chemistry/opencmis/trunk: ./ chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/ chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/

Author: fmui
Date: Fri Aug  3 07:58:13 2012
New Revision: 1368823

URL: http://svn.apache.org/viewvc?rev=1368823&view=rev
Log:
CMIS-543: added Weblogic module

Added:
    chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/
    chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt   (with props)
    chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml   (with props)
Modified:
    chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/how-to-use.txt
    chemistry/opencmis/trunk/pom.xml

Added: chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt?rev=1368823&view=auto
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt (added)
+++ chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt Fri Aug  3 07:58:13 2012
@@ -0,0 +1,15 @@
+This artifact generates an OpenCMIS Client Bindings Jar that works on Weblogic.
+
+In order to use the OpenCMIS client library in a web application on Weblogic,
+place the following jars into /WEB-INF/lib :
+
+chemistry-opencmis-client-api-<version>.jar
+chemistry-opencmis-client-impl-<version>.jar
+chemistry-opencmis-client-binding-weblogic-<version>.jar
+chemistry-opencmis-commons-api-<version>.jar
+chemistry-opencmis-commons-impl-<version>.jar
+slf4j-api-1.6.x.jar
+
+Other dependencies mentioned in other parts of the OpenCMIS documentation are 
+not required. Make sure that the standard OpenCMIS Client Bindings Jar
+is not present.
\ No newline at end of file

Propchange: chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml?rev=1368823&view=auto
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml (added)
+++ chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml Fri Aug  3 07:58:13 2012
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+    <!--
+        Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless
+        required by applicable law or agreed to in writing, software distributed under the License is distributed on an
+        "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
+        specific language governing permissions and limitations under the License.
+    -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.chemistry.opencmis</groupId>
+        <artifactId>chemistry-opencmis</artifactId>
+        <version>0.8.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>chemistry-opencmis-client-bindings-weblogic</artifactId>
+    <name>OpenCMIS Client Bindings Implementation (Weblogic)</name>
+    <packaging>jar</packaging>
+    
+    <properties>
+        <parentBasedir>../../</parentBasedir>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>1.4</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>     
+                            <artifactSet>
+                                <includes>
+                                    <include>${project.groupId}:chemistry-opencmis-client-bindings</include>
+                                </includes>
+                            </artifactSet>    
+                            <filters>
+                                <filter>
+                                    <artifact>*:*</artifact>
+                                        <excludes>
+                                            <exclude>org/apache/chemistry/opencmis/client/bindings/spi/webservices/PortProvider.class</exclude>
+                                            <exclude>META-INF/services/javax.xml.ws.spi.Provider</exclude>
+                                        </excludes>
+                                </filter>
+                            </filters>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>chemistry-opencmis-client-bindings</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+    
+</project>

Propchange: chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/how-to-use.txt
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/how-to-use.txt?rev=1368823&r1=1368822&r2=1368823&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/how-to-use.txt (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/how-to-use.txt Fri Aug  3 07:58:13 2012
@@ -12,8 +12,8 @@ chemistry-opencmis-client-impl-<version>
 chemistry-opencmis-client-binding-websphere-<version>.jar
 chemistry-opencmis-commons-api-<version>.jar
 chemistry-opencmis-commons-impl-<version>.jar
-commons-codec-1.4.jar
+slf4j-api-1.6.x.jar
 
-Other dependencies mentioned in other parts OpenCMIS documentation are 
+Other dependencies mentioned in other parts of the OpenCMIS documentation are 
 not required. Make sure that the standard OpenCMIS Client Bindings Jar
 is not present.
\ No newline at end of file

Modified: chemistry/opencmis/trunk/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/pom.xml?rev=1368823&r1=1368822&r2=1368823&view=diff
==============================================================================
--- chemistry/opencmis/trunk/pom.xml (original)
+++ chemistry/opencmis/trunk/pom.xml Fri Aug  3 07:58:13 2012
@@ -184,6 +184,7 @@
         <module>chemistry-opencmis-client/chemistry-opencmis-client-impl</module>
         <module>chemistry-opencmis-client/chemistry-opencmis-client-bindings</module>
         <module>chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere</module>
+        <module>chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic</module>
         <module>chemistry-opencmis-server/chemistry-opencmis-server-support</module>
         <module>chemistry-opencmis-server/chemistry-opencmis-server-bindings</module>
         <module>chemistry-opencmis-server/chemistry-opencmis-server-inmemory</module>