Author: fmui
Date: Tue Sep 25 12:40:57 2012
New Revision: 1389836
URL: http://svn.apache.org/viewvc?rev=1389836&view=rev
Log:
Client bindings: add packaging for Websphere and Weblogic
Added:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/assembly.xml
(with props)
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/assembly.xml
(with props)
Modified:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/how-to-use.txt
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/pom.xml
Modified:
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=1389836&r1=1389835&r2=1389836&view=diff
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt
(original)
+++
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/how-to-use.txt
Tue Sep 25 12:40:57 2012
@@ -1,4 +1,4 @@
-This artifact generates an OpenCMIS Client Bindings Jar that works on Weblogic.
+This artifact is 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 :
@@ -11,5 +11,5 @@ chemistry-opencmis-commons-impl-<version
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
+not required. Make sure that the default OpenCMIS Client Bindings Jar
is not present.
\ No newline at end of file
Modified:
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=1389836&r1=1389835&r2=1389836&view=diff
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml
(original)
+++
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/pom.xml
Tue Sep 25 12:40:57 2012
@@ -58,6 +58,26 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>pack</id>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <attach>true</attach>
+ <descriptors>
+ <descriptor>
+ src/main/assembly/assembly.xml
+ </descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
Added:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/assembly.xml
URL:
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/assembly.xml?rev=1389836&view=auto
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/assembly.xml
(added)
+++
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/assembly.xml
Tue Sep 25 12:40:57 2012
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ Licensed to the Apache Software Foundation (ASF) under one or
+ more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information regarding
+ copyright ownership. The ASF licenses this file to you 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.
+ -->
+<assembly
+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
http://maven.apache.org/xsd/assembly-1.1.1.xsd">
+ <id>pack</id>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <files>
+ <file>
+ <source>how-to-use.txt</source>
+ <outputDirectory></outputDirectory>
+ </file>
+ <file>
+
<source>${project.build.directory}/${project.build.finalName}.jar</source>
+ <outputDirectory></outputDirectory>
+ </file>
+ </files>
+</assembly>
\ No newline at end of file
Propchange:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-weblogic/src/main/assembly/assembly.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=1389836&r1=1389835&r2=1389836&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
Tue Sep 25 12:40:57 2012
@@ -1,4 +1,4 @@
-This artifact generates an OpenCMIS Client Bindings Jar that only works on
+This artifact is an OpenCMIS Client Bindings Jar that only works on
IBM WebSphere 7.0.0.5 and later. It takes advantage of the JAX-WS
implementation
provided by WebSphere, reduces OpenCMISâ dependencies and avoids potential
conflicts with the Suns JAX-WS implementation that is usually required
@@ -15,5 +15,5 @@ chemistry-opencmis-commons-impl-<version
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
+not required. Make sure that the default OpenCMIS Client Bindings Jar
is not present.
\ No newline at end of file
Modified:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/pom.xml
URL:
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/pom.xml?rev=1389836&r1=1389835&r2=1389836&view=diff
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/pom.xml
(original)
+++
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/pom.xml
Tue Sep 25 12:40:57 2012
@@ -64,6 +64,26 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>pack</id>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <attach>true</attach>
+ <descriptors>
+ <descriptor>
+ src/main/assembly/assembly.xml
+ </descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
Added:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/assembly.xml
URL:
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/assembly.xml?rev=1389836&view=auto
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/assembly.xml
(added)
+++
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/assembly.xml
Tue Sep 25 12:40:57 2012
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ Licensed to the Apache Software Foundation (ASF) under one or
+ more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information regarding
+ copyright ownership. The ASF licenses this file to you 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.
+ -->
+<assembly
+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
http://maven.apache.org/xsd/assembly-1.1.1.xsd">
+ <id>pack</id>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <files>
+ <file>
+ <source>how-to-use.txt</source>
+ <outputDirectory></outputDirectory>
+ </file>
+ <file>
+
<source>${project.build.directory}/${project.build.finalName}.jar</source>
+ <outputDirectory></outputDirectory>
+ </file>
+ </files>
+</assembly>
\ No newline at end of file
Propchange:
chemistry/opencmis/trunk/chemistry-opencmis-client/chemistry-opencmis-client-bindings-websphere/src/main/assembly/assembly.xml
------------------------------------------------------------------------------
svn:eol-style = native