forked from wildfly-extras/wildfly-camel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[resolves wildfly-extras#1992] Add support for component consul
- Loading branch information
Showing
19 changed files
with
376 additions
and
17 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,4 @@ | ||
### camel-consul | ||
|
||
The https://github.com/apache/camel/blob/camel-{camel-version}/components/camel-consul/src/main/docs/consul-component.adoc[consul,window=_blank] component allows you to work with Consul a distributed highly available datacenter-aware service discovery and configuration system. | ||
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
15 changes: 15 additions & 0 deletions
15
.../system/layers/fuse/com/fasterxml/jackson/datatype/jackson-datatype-guava/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,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="com.fasterxml.jackson.datatype.jackson-datatype-guava"> | ||
<properties> | ||
<property name="jboss.api" value="private" /> | ||
</properties> | ||
<resources> | ||
<artifact name="${com.fasterxml.jackson.datatype:jackson-datatype-guava}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="com.fasterxml.jackson.core.jackson-annotations" /> | ||
<module name="com.fasterxml.jackson.core.jackson-core" /> | ||
<module name="com.fasterxml.jackson.core.jackson-databind" /> | ||
<module name="com.google.guava" /> | ||
</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
25 changes: 25 additions & 0 deletions
25
...in/resources/modules/system/layers/fuse/org/apache/camel/component/consul/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,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.apache.camel.component.consul"> | ||
<resources> | ||
<artifact name="${org.apache.camel:camel-consul}" /> | ||
<artifact name="${com.orbitz.consul:consul-client}" /> | ||
</resources> | ||
<dependencies> | ||
<module name="com.fasterxml.jackson.core.jackson-annotations" /> | ||
<module name="com.fasterxml.jackson.core.jackson-core" /> | ||
<module name="com.fasterxml.jackson.core.jackson-databind" /> | ||
<module name="com.fasterxml.jackson.datatype.jackson-datatype-guava" /> | ||
<module name="com.google.guava" /> | ||
<module name="com.squareup.retrofit2" /> | ||
<module name="com.squareup.okhttp3" /> | ||
<module name="org.apache.commons.lang3" /> | ||
<module name="org.slf4j" /> | ||
<module name="javax.xml.bind.api" /> | ||
<module name="org.apache.camel.core" /> | ||
</dependencies> | ||
<exports> | ||
<exclude path="com/orbitz" /> | ||
<include path="com/orbitz/consul" /> | ||
<include path="com/orbitz/consul/**" /> | ||
</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
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.