-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from assimbly/issues/issue-73/update-dependencies
Update dependencies
- Loading branch information
Showing
22 changed files
with
931 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
mvn -f ..\..\pom.xml versions:display-dependency-updates -Dexcludes=org.apache.camel:* | ||
mvn -f ..\..\pom.xml versions:display-dependency-updates -Dexcludes=org.apache.camel:* -DlogOutput=false |
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
30 changes: 30 additions & 0 deletions
30
dil/src/main/java/org/assimbly/dil/blocks/templates/Javascript.java
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,30 @@ | ||
package org.assimbly.dil.blocks.templates; | ||
|
||
import org.apache.camel.builder.RouteBuilder; | ||
|
||
public class Javascript extends RouteBuilder { | ||
|
||
@Override | ||
public void configure() throws Exception { | ||
|
||
routeTemplate("javascript-action") | ||
.templateParameter("routeconfiguration_id","0") | ||
.templateOptionalParameter("path") | ||
.templateParameter("in") | ||
.templateParameter("out") | ||
.from("{{in}}") | ||
.routeConfigurationId("{{routeconfiguration_id}}") | ||
.setBody().js("{{path}}") | ||
.to("{{out}}"); | ||
|
||
routeTemplate("javascript-sink") | ||
.templateParameter("routeconfiguration_id","0") | ||
.templateOptionalParameter("path") | ||
.templateParameter("in") | ||
.from("{{in}}") | ||
.routeConfigurationId("{{routeconfiguration_id}}") | ||
.setBody().js("{{path}}"); | ||
|
||
} | ||
|
||
} |
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
30 changes: 30 additions & 0 deletions
30
dil/src/main/java/org/assimbly/dil/blocks/templates/Python.java
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,30 @@ | ||
package org.assimbly.dil.blocks.templates; | ||
|
||
import org.apache.camel.builder.RouteBuilder; | ||
|
||
public class Python extends RouteBuilder { | ||
|
||
@Override | ||
public void configure() throws Exception { | ||
|
||
routeTemplate("python-action") | ||
.templateParameter("routeconfiguration_id","0") | ||
.templateOptionalParameter("path") | ||
.templateParameter("in") | ||
.templateParameter("out") | ||
.from("{{in}}") | ||
.routeConfigurationId("{{routeconfiguration_id}}") | ||
.setBody().python("{{path}}") | ||
.to("{{out}}"); | ||
|
||
routeTemplate("python-sink") | ||
.templateParameter("routeconfiguration_id","0") | ||
.templateOptionalParameter("path") | ||
.templateParameter("in") | ||
.from("{{in}}") | ||
.routeConfigurationId("{{routeconfiguration_id}}") | ||
.setBody().python("{{path}}"); | ||
|
||
} | ||
|
||
} |
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
30 changes: 30 additions & 0 deletions
30
dil/src/main/java/org/assimbly/dil/blocks/templates/Simple.java
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,30 @@ | ||
package org.assimbly.dil.blocks.templates; | ||
|
||
import org.apache.camel.builder.RouteBuilder; | ||
|
||
public class Simple extends RouteBuilder { | ||
|
||
@Override | ||
public void configure() throws Exception { | ||
|
||
routeTemplate("simple-action") | ||
.templateParameter("routeconfiguration_id","0") | ||
.templateOptionalParameter("path") | ||
.templateParameter("in") | ||
.templateParameter("out") | ||
.from("{{in}}") | ||
.routeConfigurationId("{{routeconfiguration_id}}") | ||
.setBody().simple("{{path}}") | ||
.to("{{out}}"); | ||
|
||
routeTemplate("simple-sink") | ||
.templateParameter("routeconfiguration_id","0") | ||
.templateOptionalParameter("path") | ||
.templateParameter("in") | ||
.from("{{in}}") | ||
.routeConfigurationId("{{routeconfiguration_id}}") | ||
.setBody().simple("{{path}}"); | ||
|
||
} | ||
|
||
} |
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.