<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2016 Red Hat, Inc.
  ~ <p>
  ~ 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
  ~ <p>
  ~ http://www.apache.org/licenses/LICENSE-2.0
  ~ <p>
  ~ 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/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.basepom</groupId>
    <artifactId>basepom-oss</artifactId>
    <version>23</version>
    <relativePath />
  </parent>

  <groupId>io.syndesis</groupId>
  <artifactId>integration-runtime-bom</artifactId>
  <version>1.2.1</version>
  <packaging>pom</packaging>

  <name>Syndesis :: Integration Runtime :: Bill of Materials</name>
  <description>Syndesis Integration Runtime Bill of Materials POM</description>
  <inceptionYear>2016</inceptionYear>

  <organization>
    <name>Red Hat</name>
    <url>http://redhat.com</url>
  </organization>

  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <!-- including A developer as it's required by the maven poms going into
    central -->
  <developers>
    <developer>
      <id>syndesis</id>
      <name>Syndesis Development Team</name>
      <organizationUrl>https://syndesis.io/</organizationUrl>
    </developer>
  </developers>

  <scm>
    <connection>scm:git:git@github.com:syndesisio/syndesis-rest.git</connection>
    <developerConnection>scm:git:git@github.com:syndesisio/syndesis-rest.git    </developerConnection>
    <url>http://github.com/syndesisio/syndesis-rest/</url>
    <tag>1.2.1</tag>
  </scm>

  <distributionManagement>
    <repository>
      <id>oss-sonatype-staging</id>
      <name>Sonatype Staging Repository</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
    </repository>
  </distributionManagement>

  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <camel.version>2.20.0</camel.version>
    <jackson.version>2.8.10</jackson.version>
    <assertj.version>2.4.1</assertj.version>
    <rest-assured.version>3.0.0</rest-assured.version>
    <spring-boot.version>1.5.7.RELEASE</spring-boot.version>
    <spring.version>4.3.11</spring.version>
    <dep.plugin.dependency.version>3.0.1</dep.plugin.dependency.version>
    <auto-service.version>1.0-rc3</auto-service.version>
    <json-path.version>2.4.0</json-path.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <basepom.test.timeout>180</basepom.test.timeout>
    <basepom.failsafe.timeout>180</basepom.failsafe.timeout>
  </properties>

  
  <dependencyManagement>
    <dependencies>
      <!-- Syndesis Runtime Modules -->
      <dependency>
        <groupId>io.syndesis.integration-runtime</groupId>
        <artifactId>model</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>io.syndesis.integration-runtime</groupId>
        <artifactId>runtime</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>io.syndesis.integration-runtime</groupId>
        <artifactId>runtime-api</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>integration-runtime</artifactId>
        <version>${project.version}</version>
      </dependency>
      
      <!-- project dependencies -->
      <dependency>
        <groupId>com.fasterxml.jackson</groupId>
        <artifactId>jackson-bom</artifactId>
        <version>${jackson.version}</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies</artifactId>
        <version>${spring-boot.version}</version>
        <scope>import</scope>
        <type>pom</type>
      </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>com.google.auto.service</groupId>
        <artifactId>auto-service</artifactId>
        <version>${auto-service.version}</version>
      </dependency>
      <dependency>
        <groupId>com.jayway.jsonpath</groupId>
        <artifactId>json-path</artifactId>
        <version>${json-path.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

  </project>