[ 
https://issues.apache.org/jira/browse/CAMEL-10671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16448228#comment-16448228
 ] 

ASF GitHub Bot commented on CAMEL-10671:
----------------------------------------

dmvolod commented on a change in pull request #2303: CAMEL-10671: Adding Camel 
example project for the Ceylon JVM language
URL: https://github.com/apache/camel/pull/2303#discussion_r183417724
 
 

 ##########
 File path: examples/camel-example-ceylon/pom.xml
 ##########
 @@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.camel.example</groupId>
+    <artifactId>examples</artifactId>
+    <version>2.22.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>camel-example-ceylon</artifactId>
+  <packaging>jar</packaging>
+  <name>Camel :: Example :: Ceylon</name>
+  <description>A Camel route using Ceylon</description>
+
+  <properties>
+    <category>Other Languages</category>
+    <ceylon.version>1.3.3</ceylon.version>
+  </properties>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core</artifactId>
+    </dependency>
+
+    <!-- used for jetty -->
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-jetty</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-http-common</artifactId>
+      <version>2.21.0</version>
+    </dependency>
+
+    <!-- logging -->
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+
+    <sourceDirectory>${project.basedir}/src/main/ceylon</sourceDirectory>
+
+    <plugins>
+
+      <plugin>
+        <groupId>org.ceylon-lang</groupId>
+        <artifactId>ceylon-maven-plugin</artifactId>
+        <version>${ceylon.version}</version>
+        <configuration>
+          <disablePomChecks>true</disablePomChecks>
+          <module>org.apache.camel.example/1.0.0</module>
+        </configuration>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-http-common</artifactId>
+            <version>2.21.0</version>
 
 Review comment:
   You can use ${project.version} here

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> camel-example-celyon
> --------------------
>
>                 Key: CAMEL-10671
>                 URL: https://issues.apache.org/jira/browse/CAMEL-10671
>             Project: Camel
>          Issue Type: New Feature
>          Components: examples
>            Reporter: Claus Ibsen
>            Priority: Minor
>             Fix For: Future
>
>
> We should have a little example of using camel with celyon. Its just to have 
> a maven project with celyon dependencies and compiler setup and some basic 
> celyon code that can run standalone with a camel route.
> Take a look at the groovy or kotlin example which would be similar.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to