| <?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/xsd/maven-4.0.0.xsd"> | 
 |     <parent> | 
 |         <groupId>org.apache.camel.k</groupId> | 
 |         <artifactId>camel-k-runtime-parent</artifactId> | 
 |         <version>1.3.0-SNAPSHOT</version> | 
 |     </parent> | 
 |     <modelVersion>4.0.0</modelVersion> | 
 |  | 
 |     <artifactId>camel-k-loader-kotlin</artifactId> | 
 |  | 
 |     <dependencies> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel.k</groupId> | 
 |             <artifactId>camel-k-runtime-core</artifactId> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-core-engine</artifactId> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-endpointdsl</artifactId> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-log</artifactId> | 
 |             <optional>true</optional> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.jetbrains.kotlin</groupId> | 
 |             <artifactId>kotlin-stdlib-jdk8</artifactId> | 
 |             <version>${kotlin.version}</version> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.jetbrains.kotlin</groupId> | 
 |             <artifactId>kotlin-script-util</artifactId> | 
 |             <version>${kotlin.version}</version> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.jetbrains.kotlin</groupId> | 
 |             <artifactId>kotlin-scripting-jvm</artifactId> | 
 |             <version>${kotlin.version}</version> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.jetbrains.kotlin</groupId> | 
 |             <artifactId>kotlin-scripting-jvm-host</artifactId> | 
 |             <version>${kotlin.version}</version> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.jetbrains.kotlin</groupId> | 
 |             <artifactId>kotlin-scripting-compiler</artifactId> | 
 |             <version>${kotlin.version}</version> | 
 |         </dependency> | 
 |  | 
 |         <!-- ****************************** --> | 
 |         <!--                                --> | 
 |         <!-- TESTS                          --> | 
 |         <!--                                --> | 
 |         <!-- ****************************** --> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.apache.camel.k</groupId> | 
 |             <artifactId>camel-k-test</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-timer</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-seda</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-rest</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-direct</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-main</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-bean</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |         <dependency> | 
 |             <groupId>org.apache.camel</groupId> | 
 |             <artifactId>camel-jackson</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.apache.commons</groupId> | 
 |             <artifactId>commons-dbcp2</artifactId> | 
 |             <version>${commons-dbcp2.version}</version> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |     </dependencies> | 
 |  | 
 |     <build> | 
 |         <plugins> | 
 |             <plugin> | 
 |                 <groupId>org.jetbrains.kotlin</groupId> | 
 |                 <artifactId>kotlin-maven-plugin</artifactId> | 
 |                 <version>${kotlin.version}</version> | 
 |                 <configuration> | 
 |                     <jvmTarget>${maven.compiler.target}</jvmTarget> | 
 |                 </configuration> | 
 |                 <executions> | 
 |                     <execution> | 
 |                         <id>compile</id> | 
 |                         <goals> | 
 |                             <goal>compile</goal> | 
 |                         </goals> | 
 |                         <configuration> | 
 |                             <jvmTarget>${kotlin.compiler.target}</jvmTarget> | 
 |                             <sourceDirs> | 
 |                                 <sourceDir>src/main/kotlin</sourceDir> | 
 |                             </sourceDirs> | 
 |                         </configuration> | 
 |                     </execution> | 
 |                     <execution> | 
 |                         <id>test-compile</id> | 
 |                         <goals> | 
 |                             <goal>test-compile</goal> | 
 |                         </goals> | 
 |                         <configuration> | 
 |                             <jvmTarget>${kotlin.compiler.target}</jvmTarget> | 
 |                             <sourceDirs> | 
 |                                 <sourceDir>src/test/kotlin</sourceDir> | 
 |                             </sourceDirs> | 
 |                         </configuration> | 
 |                     </execution> | 
 |                 </executions> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <groupId>org.apache.maven.plugins</groupId> | 
 |                 <artifactId>maven-compiler-plugin</artifactId> | 
 |                 <executions> | 
 |                     <!-- Replacing default-compile as it is treated specially by maven --> | 
 |                     <execution> | 
 |                         <id>default-compile</id> | 
 |                         <phase>none</phase> | 
 |                     </execution> | 
 |                     <!-- Replacing default-testCompile as it is treated specially by maven --> | 
 |                     <execution> | 
 |                         <id>default-testCompile</id> | 
 |                         <phase>none</phase> | 
 |                     </execution> | 
 |                     <execution> | 
 |                         <id>java-compile</id> | 
 |                         <phase>compile</phase> | 
 |                         <goals> <goal>compile</goal> </goals> | 
 |                     </execution> | 
 |                     <execution> | 
 |                         <id>java-test-compile</id> | 
 |                         <phase>test-compile</phase> | 
 |                         <goals> <goal>testCompile</goal> </goals> | 
 |                     </execution> | 
 |                 </executions> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <groupId>org.apache.maven.plugins</groupId> | 
 |                 <artifactId>maven-surefire-plugin</artifactId> | 
 |                 <configuration> | 
 |                   <forkCount>1</forkCount> | 
 |                   <reuseForks>false</reuseForks> | 
 |                 </configuration> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <groupId>org.jboss.jandex</groupId> | 
 |                 <artifactId>jandex-maven-plugin</artifactId> | 
 |                 <executions> | 
 |                     <execution> | 
 |                         <id>make-index</id> | 
 |                         <goals> | 
 |                             <goal>jandex</goal> | 
 |                         </goals> | 
 |                     </execution> | 
 |                 </executions> | 
 |             </plugin> | 
 |         </plugins> | 
 |     </build> | 
 |  | 
 | </project> |