-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[resolves #1989] Add support for component cmis
- Loading branch information
1 parent
c833e4c
commit 8e136ff
Showing
20 changed files
with
442 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### camel-cmis | ||
|
||
The https://github.com/apache/camel/blob/camel-{camel-version}/components/camel-cmis/src/main/docs/cmis-component.adoc[cmis,window=_blank] component uses the http://chemistry.apache.org/java/opencmis.html[Apache Chemistry,window=_blank] client API and allows you to add / read nodes to / from a CMIS compliant content repositories. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...main/resources/modules/system/layers/fuse/org/apache/camel/component/cmis/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.camel.component.cmis"> | ||
<resources> | ||
<artifact name="${org.apache.camel:camel-cmis}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="org.apache.chemistry.opencmis" export="true"> | ||
<exports> | ||
<exclude path="org/apache/chemistry/opencmis/client/osgi" /> | ||
<exclude path="wsdl**" /> | ||
</exports> | ||
</module> | ||
<module name="org.slf4j" /> | ||
<module name="javax.xml.bind.api" /> | ||
<module name="org.apache.camel.core" /> | ||
</dependencies> | ||
<exports> | ||
<exclude path="org/apache/camel/component/cmis/osgi" /> | ||
</exports> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...c/main/resources/modules/system/layers/fuse/org/apache/chemistry/opencmis/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.chemistry.opencmis"> | ||
<properties> | ||
<property name="jboss.api" value="private" /> | ||
</properties> | ||
<resources> | ||
<artifact name="${org.apache.chemistry.opencmis:chemistry-opencmis-client-api}" /> | ||
<artifact name="${org.apache.chemistry.opencmis:chemistry-opencmis-client-bindings}" /> | ||
<artifact name="${org.apache.chemistry.opencmis:chemistry-opencmis-client-impl}" /> | ||
<artifact name="${org.apache.chemistry.opencmis:chemistry-opencmis-commons-api}" /> | ||
<artifact name="${org.apache.chemistry.opencmis:chemistry-opencmis-commons-impl}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="javax.api" /> | ||
<module name="com.squareup.okhttp3" /> | ||
<module name="org.apache.cxf.impl" /> | ||
<module name="org.apache.httpcomponents" /> | ||
<module name="org.codehaus.woodstox" /> | ||
<module name="org.osgi.core" /> | ||
<module name="org.slf4j" /> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.