<?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>

	<parent>
		<groupId>ch.mobi.mobitor</groupId>
		<artifactId>mobitor-parent</artifactId>
		<version>3.1.13</version>
	</parent>

	<artifactId>mobitor-base</artifactId>

	<properties>
		<jacoco.it.destFile>${project.basedir}/../target/jacoco-it.exec</jacoco.it.destFile>
		<jacoco.destFile>${project.basedir}/../target/jacoco.exec</jacoco.destFile>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-aop</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-cache</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
		<dependency>
			<groupId>io.micrometer</groupId>
			<artifactId>micrometer-registry-prometheus</artifactId>
		</dependency>

		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>fluent-hc</artifactId>
		</dependency>
		<dependency>
			<groupId>com.hazelcast</groupId>
			<artifactId>hazelcast-spring</artifactId>
		</dependency>
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>20.0</version>
		</dependency>
		<dependency>
			<groupId>joda-time</groupId>
			<artifactId>joda-time</artifactId>
		</dependency>
		<dependency>
			<groupId>org.jetbrains</groupId>
			<artifactId>annotations</artifactId>
		</dependency>

		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-bitbucket</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-edwh</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-hpalm</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-jira</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-kubernetes</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-liima</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-nexusiq</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-rest</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-sonarqube</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-swd</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-teamcity</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor.plugins</groupId>
			<artifactId>mobitor-plugin-zaproxy</artifactId>
			<version>${project.version}</version>
		</dependency>


		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.github.tomakehurst</groupId>
			<artifactId>wiremock</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.jayway.jsonpath</groupId>
			<artifactId>json-path-assert</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>ch.mobi.mobitor</groupId>
			<artifactId>mobitor-plugins-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.asciidoctor</groupId>
				<artifactId>asciidoctor-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>
