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 943f6fd CAMEL-10671: Adding Camel example project for the Ceylon JVM language 943f6fd is described below commit 943f6fd83d6917a1ec70ab1cfd41d0a8d62a73db Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sat May 5 14:55:49 2018 +0200 CAMEL-10671: Adding Camel example project for the Ceylon JVM language Try to fix CI build by correcting maven dependencies into Ceylon module --- examples/camel-example-ceylon/pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/camel-example-ceylon/pom.xml b/examples/camel-example-ceylon/pom.xml index 4f9bbcf..d794894 100644 --- a/examples/camel-example-ceylon/pom.xml +++ b/examples/camel-example-ceylon/pom.xml @@ -116,13 +116,17 @@ <goal>import-dependency</goal> </goals> <configuration> + <!-- Import Maven dependencies as Ceylon modules --> <moduleImports> <moduleImport> - <!-- Import Maven dependencies as Ceylon modules --> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> </dependency> + <!-- otherwise ceylon complains about undeclared imports --> + <force>true</force> + </moduleImport> + <moduleImport> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-jetty</artifactId> -- To stop receiving notification emails like this one, please contact pascalschumac...@apache.org.