This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new ed69c80 CAMEL-10671: Adding Camel example project for the Ceylon JVM language ed69c80 is described below commit ed69c80eab1f33ee6606078e74d4cb1371453bb6 Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sat May 5 17:10:25 2018 +0200 CAMEL-10671: Adding Camel example project for the Ceylon JVM language Try to fix CI build by referring to local modules instead of maven modules in module.ceylon --- .../camel-example-ceylon/src/main/resources/module/module.ceylon | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/examples/camel-example-ceylon/src/main/resources/module/module.ceylon b/examples/camel-example-ceylon/src/main/resources/module/module.ceylon index 36de736..5ca9adc 100644 --- a/examples/camel-example-ceylon/src/main/resources/module/module.ceylon +++ b/examples/camel-example-ceylon/src/main/resources/module/module.ceylon @@ -18,6 +18,9 @@ native("jvm") module org.apache.camel.example "${project.version}" { shared import "ceylon.interop.java" "${ceylon.version}"; - shared import maven:"org.apache.camel:camel-core" "${project.version}"; - shared import maven:"org.apache.camel:camel-jetty" "${project.version}"; + shared import "org.apache.camel.camel-core" "${project.version}"; + shared import "org.apache.camel.camel-jetty" "${project.version}"; + // Camel module imports above are used like this allow compiling against Camel snapshot versions, in general you should use: + // shared import maven "org.apache.camel:camel-jetty" "$CAMEL-VERSION"; + // shared import maven:"org.apache.camel:camel-jetty" "$CAMEL-VERSION"; } -- To stop receiving notification emails like this one, please contact pascalschumac...@apache.org.