You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
199 lines
7.1 KiB
199 lines
7.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright 2005-2016 Red Hat, Inc.
|
|
|
|
Red Hat 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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.redhat.fuse.quickstarts</groupId>
|
|
<artifactId>spring-boot-camel-xml</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>JBoss Fuse :: Quickstarts :: Spring-Boot :: Camel XML</name>
|
|
<description>Spring Boot example running a Camel route defined in XML</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<spring-boot.version>1.5.18.RELEASE</spring-boot.version>
|
|
<camel.version>2.17.0.redhat-630187</camel.version>
|
|
|
|
<!-- versions of Maven plugins -->
|
|
<fmp.version>3.5.37</fmp.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.camel</groupId>
|
|
<artifactId>camel-spring-boot-dependencies</artifactId>
|
|
<version>2.18.1.redhat-000005</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.camel</groupId>
|
|
<artifactId>camel-spring-boot-starter</artifactId>
|
|
<version>${camel.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!-- <plugin> -->
|
|
<!-- <groupId>io.fabric8</groupId> -->
|
|
<!-- <artifactId>fabric8-maven-plugin</artifactId> -->
|
|
<!-- <version>${fmp.version}</version> -->
|
|
<!-- </plugin> -->
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<!-- Core plugins -->
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<version>${spring-boot.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<!--
|
|
this plugin will use the fabric.* properties to configure its behaviour
|
|
see the Properties section here: http://fabric8.io/gitbook/mavenPlugin.html
|
|
-->
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>fabric8-maven-plugin</artifactId>
|
|
<version>1.2.0.redhat-630187</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>redhat-ga-repository</id>
|
|
<url>https://maven.repository.redhat.com/ga</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>redhat-ea-repository</id>
|
|
<url>https://maven.repository.redhat.com/earlyaccess/all</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>redhat-ga-repository</id>
|
|
<url>https://maven.repository.redhat.com/ga</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>redhat-ea-repository</id>
|
|
<url>https://maven.repository.redhat.com/earlyaccess/all</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<!-- <profiles> -->
|
|
<!-- <profile> -->
|
|
<!-- <id>openshift</id> -->
|
|
<!-- <build> -->
|
|
<!-- <plugins> -->
|
|
<!-- <plugin> -->
|
|
<!-- <groupId>io.fabric8</groupId> -->
|
|
<!-- <artifactId>fabric8-maven-plugin</artifactId> -->
|
|
<!-- <configuration> -->
|
|
<!-- <enricher> -->
|
|
<!-- <excludes> -->
|
|
<!-- <exclude>fmp-openshift-route</exclude> -->
|
|
<!-- </excludes> -->
|
|
<!-- </enricher> -->
|
|
<!-- </configuration> -->
|
|
<!-- <executions> -->
|
|
<!-- <execution> -->
|
|
<!-- <goals> -->
|
|
<!-- <goal>resource</goal> -->
|
|
<!-- <goal>build</goal> -->
|
|
<!-- </goals> -->
|
|
<!-- </execution> -->
|
|
<!-- </executions> -->
|
|
<!-- </plugin> -->
|
|
<!-- </plugins> -->
|
|
<!-- </build> -->
|
|
<!-- </profile> -->
|
|
<!-- </profiles> -->
|
|
</project>
|