|
|
|
|
@ -1,13 +1,13 @@
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<groupId>com.redhat.fuse.boosters</groupId> |
|
|
|
|
<artifactId>fuse-rest-http-booster</artifactId> |
|
|
|
|
<version>7.0.0.fuse-sb2-760003</version> |
|
|
|
|
<version>7.0.0.redhat-SNAPSHOT</version> |
|
|
|
|
|
|
|
|
|
<name>Fuse :: Boosters :: Rest HTTP</name> |
|
|
|
|
|
|
|
|
|
@ -15,18 +15,41 @@
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
|
|
|
|
|
|
<fuse.bom.version>7.6.0.fuse-sb2-760003</fuse.bom.version> |
|
|
|
|
<spring-boot.version>1.5.13.RELEASE</spring-boot.version> |
|
|
|
|
<camel.version>2.21.2</camel.version> |
|
|
|
|
|
|
|
|
|
<!-- versions of Maven plugins --> |
|
|
|
|
<fmp.version>4.3.1</fmp.version> |
|
|
|
|
|
|
|
|
|
<!-- version of Arquillian --> |
|
|
|
|
<arquillian.cube.version>1.17.1</arquillian.cube.version> |
|
|
|
|
<arquillian.version>1.4.0.Final</arquillian.version> |
|
|
|
|
<openshift-client.version>4.0.7</openshift-client.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
<dependencyManagement> |
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.jboss.redhat-fuse</groupId> |
|
|
|
|
<artifactId>fuse-springboot-bom</artifactId> |
|
|
|
|
<version>${fuse.bom.version}</version> |
|
|
|
|
<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>${camel.version}</version> |
|
|
|
|
<type>pom</type> |
|
|
|
|
<scope>import</scope> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.arquillian.cube</groupId> |
|
|
|
|
<artifactId>arquillian-cube-bom</artifactId> |
|
|
|
|
<version>${arquillian.cube.version}</version> |
|
|
|
|
<scope>import</scope> |
|
|
|
|
<type>pom</type> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</dependencyManagement> |
|
|
|
|
|
|
|
|
|
@ -83,10 +106,6 @@
|
|
|
|
|
<groupId>org.apache.camel</groupId> |
|
|
|
|
<artifactId>camel-swagger-java-starter</artifactId> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>io.fabric8</groupId> |
|
|
|
|
<artifactId>openshift-client</artifactId> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- Test --> |
|
|
|
|
<dependency> |
|
|
|
|
@ -118,9 +137,14 @@
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.jboss.arquillian.junit</groupId> |
|
|
|
|
<artifactId>arquillian-junit-standalone</artifactId> |
|
|
|
|
<version>${arquillian.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>io.fabric8</groupId> |
|
|
|
|
<artifactId>openshift-client</artifactId> |
|
|
|
|
<version>${openshift-client.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
@ -147,9 +171,9 @@
|
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.jboss.redhat-fuse</groupId> |
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
|
<version>${fuse.bom.version}</version> |
|
|
|
|
<version>${spring-boot.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<goals> |
|
|
|
|
@ -213,9 +237,9 @@
|
|
|
|
|
<build> |
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.jboss.redhat-fuse</groupId> |
|
|
|
|
<groupId>io.fabric8</groupId> |
|
|
|
|
<artifactId>fabric8-maven-plugin</artifactId> |
|
|
|
|
<version>${fuse.bom.version}</version> |
|
|
|
|
<version>${fmp.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<goals> |
|
|
|
|
|