This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 9c6b4d149ae98139783379f2c7eae639fd88db66 Author: lburgazzoli <[email protected]> AuthorDate: Thu Nov 29 17:04:05 2018 +0100 chore: remove spring boot example bits --- runtime/spring-boot-example/.gitignore | 10 ---- runtime/spring-boot-example/pom.xml | 90 ---------------------------------- 2 files changed, 100 deletions(-) diff --git a/runtime/spring-boot-example/.gitignore b/runtime/spring-boot-example/.gitignore deleted file mode 100644 index ed92983..0000000 --- a/runtime/spring-boot-example/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -target - -*.iml - -.idea -.project -.metadata -.settings -.factorypath -.classpath diff --git a/runtime/spring-boot-example/pom.xml b/runtime/spring-boot-example/pom.xml deleted file mode 100644 index 4e98e33..0000000 --- a/runtime/spring-boot-example/pom.xml +++ /dev/null @@ -1,90 +0,0 @@ -<?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>0.0.6-SNAPSHOT</version> - </parent> - - <modelVersion>4.0.0</modelVersion> - <artifactId>camel-k-runtime-spring-boot-example</artifactId> - - <dependencies> - <dependency> - <groupId>org.apache.camel.k</groupId> - <artifactId>camel-k-runtime-spring-boot</artifactId> - <version>${project.version}</version> - <exclusions> - <exclusion> - <groupId>org.apache.camel</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.camel.k</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-dns-starter</artifactId> - <exclusions> - <exclusion> - <groupId>com.sun.xml.bind</groupId> - <artifactId>*</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.camel</groupId> - <artifactId>camel-core</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.camel</groupId> - <artifactId>camel-core-starter</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.camel</groupId> - <artifactId>camel-spring-boot-starter</artifactId> - </exclusion> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter</artifactId> - </exclusion> - </exclusions> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.camel.k</groupId> - <artifactId>camel-k-runtime-dependency-lister</artifactId> - <version>${project.version}</version> - </plugin> - </plugins> - </build> -</project>
