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.
168 lines
5.6 KiB
168 lines
5.6 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>fr.itix</groupId>
|
|
<artifactId>save-next-todo</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>Camel Demo</name>
|
|
<description>Part of my Fuse Online demo</description>
|
|
<properties>
|
|
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
|
<fuse.version>7.6.0.fuse-760027-redhat-00001</fuse.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jboss.redhat-fuse</groupId>
|
|
<artifactId>fuse-springboot-bom</artifactId>
|
|
<version>7.6.0.fuse-760027-redhat-00001</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.camel</groupId>
|
|
<artifactId>camel-jsonpath</artifactId>
|
|
<version>2.21.0.fuse-760027-redhat-00001</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.camel</groupId>
|
|
<artifactId>camel-spring-boot-starter</artifactId>
|
|
<version>2.21.0.fuse-760027-redhat-00001</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.camel</groupId>
|
|
<artifactId>camel-netty4-http</artifactId>
|
|
<version>2.21.0.fuse-760027-redhat-00001</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>red-hat-ga-repository</id>
|
|
<url>https://maven.repository.redhat.com/ga</url>
|
|
</repository>
|
|
<repository>
|
|
<id>red-hat-early-access-repository</id>
|
|
<url>https://maven.repository.redhat.com/earlyaccess/all</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jboss-early-access-repository</id>
|
|
<url>https://repository.jboss.org/nexus/content/groups/ea</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>red-hat-ga-repository</id>
|
|
<url>https://maven.repository.redhat.com/ga</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>red-hat-early-access-repository</id>
|
|
<url>https://maven.repository.redhat.com/earlyaccess/all</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>jboss-early-access-repository</id>
|
|
<url>https://repository.jboss.org/nexus/content/groups/ea</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<build>
|
|
<defaultGoal>spring-boot:run</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jboss.redhat-fuse</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${fuse.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jboss.redhat-fuse</groupId>
|
|
<artifactId>fabric8-maven-plugin</artifactId>
|
|
<version>${fuse.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>resource</goal>
|
|
<goal>build</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<profiles>
|
|
<profile>
|
|
<id>jdk9+-build</id>
|
|
<activation>
|
|
<jdk>[9,)</jdk>
|
|
</activation>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.ws</groupId>
|
|
<artifactId>jaxws-api</artifactId>
|
|
<version>2.3.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<groupId>javax.xml.bind</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<version>2.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.activation</groupId>
|
|
<artifactId>javax.activation</artifactId>
|
|
<version>1.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.messaging.saaj</groupId>
|
|
<artifactId>saaj-impl</artifactId>
|
|
<version>1.4.0-b03</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.spec.javax.rmi</groupId>
|
|
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
|
<version>1.0.6.Final</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|
|
|