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.
256 lines
8.9 KiB
256 lines
8.9 KiB
<?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" |
|
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.redhat-SNAPSHOT</version> |
|
|
|
<name>Fuse :: Boosters :: Rest HTTP</name> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
<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.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> |
|
|
|
<dependencies> |
|
<!-- spring-boot --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.webjars</groupId> |
|
<artifactId>swagger-ui</artifactId> |
|
<version>3.13.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.webjars</groupId> |
|
<artifactId>webjars-locator</artifactId> |
|
<version>0.33</version> |
|
</dependency> |
|
|
|
<!-- camel --> |
|
<dependency> |
|
<groupId>org.apache.camel</groupId> |
|
<artifactId>camel-spring-boot-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.camel</groupId> |
|
<artifactId>camel-http-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.camel</groupId> |
|
<artifactId>camel-servlet-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.camel</groupId> |
|
<artifactId>camel-jackson-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.camel</groupId> |
|
<artifactId>camel-swagger-java-starter</artifactId> |
|
</dependency> |
|
|
|
<!-- Test --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.camel</groupId> |
|
<artifactId>camel-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.arquillian.cube</groupId> |
|
<artifactId>arquillian-cube-requirement</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.arquillian.cube</groupId> |
|
<artifactId>arquillian-cube-openshift</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpclient-osgi</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
<scope>test</scope> |
|
</dependency> |
|
<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> |
|
<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.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.22.0</version> |
|
<inherited>true</inherited> |
|
<configuration> |
|
<excludes> |
|
<exclude>**/*KT.java</exclude> |
|
</excludes> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>${spring-boot.version}</version> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</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> |
|
<version>${fmp.version}</version> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>resource</goal> |
|
<goal>build</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
</profiles> |
|
</project>
|
|
|