Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| <?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/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>io.fabric8.quickstarts</groupId> | |
| <artifactId>spring-boot-camel-amq</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>jar</packaging> | |
| <name>Fabric8 :: Quickstarts :: Spring Boot :: Camel and ActiveMQ</name> | |
| <description>Spring Boot example running a Camel route connecting to ActiveMQ</description> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <!-- dependency versions --> | |
| <fabric8.version>2.3.7</fabric8.version> | |
| <spring-boot.version>1.5.4.RELEASE</spring-boot.version> | |
| <!-- maven plugin versions --> | |
| <fabric8.maven.plugin.version>3.5.34</fabric8.maven.plugin.version> | |
| <maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version> | |
| <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> | |
| </properties> | |
| <dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>io.fabric8</groupId> | |
| <artifactId>fabric8-project-bom-camel-spring-boot</artifactId> | |
| <version>${fabric8.version}</version> | |
| <type>pom</type> | |
| <scope>import</scope> | |
| </dependency> | |
| </dependencies> | |
| </dependencyManagement> | |
| <dependencies> | |
| <!-- Enabling health checks --> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-actuator</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.camel</groupId> | |
| <artifactId>camel-spring-boot-starter</artifactId> | |
| </dependency> | |
| <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-configuration-processor</artifactId> | |
| <optional>true</optional> | |
| </dependency> | |
| <!-- Camel --> | |
| <dependency> | |
| <groupId>org.apache.camel</groupId> | |
| <artifactId>camel-spring-boot-starter</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.camel</groupId> | |
| <artifactId>camel-amqp-starter</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.activemq</groupId> | |
| <artifactId>activemq-jms-pool</artifactId> | |
| </dependency> | |
| <!-- testing --> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.jboss.arquillian.junit</groupId> | |
| <artifactId>arquillian-junit-container</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.arquillian.cube</groupId> | |
| <artifactId>arquillian-cube-openshift</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.fabric8</groupId> | |
| <artifactId>kubernetes-assertions</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <testResources> | |
| <testResource> | |
| <directory>src/test/resources</directory> | |
| <filtering>true</filtering> | |
| </testResource> | |
| </testResources> | |
| <plugins> | |
| <!-- Compiler plugin enforces Java 1.8 compatibility and activates annotation processors --> | |
| <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.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>${maven-surefire-plugin.version}</version> | |
| <inherited>true</inherited> | |
| <configuration> | |
| <argLine>-DenableImageStreamDetection=true</argLine> | |
| <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> | |
| <plugin> | |
| <groupId>io.fabric8</groupId> | |
| <artifactId>fabric8-maven-plugin</artifactId> | |
| <version>${fabric8.maven.plugin.version}</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>resource</goal> | |
| <goal>build</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |