<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.springframework.cloud.stream.app</groupId>
        <artifactId>stream-applications-core</artifactId>
        <version>4.0.1</version>
    </parent>

    <artifactId>stream-applications-micrometer-common</artifactId>
    <name>stream-applications-micrometer-common</name>

    <properties>
        <jmockit.version>1.49</jmockit.version>
	</properties>

    <dependencies>
        <dependency>
            <groupId>io.micrometer</groupId>
            <artifactId>micrometer-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <optional>true</optional>
            <scope>test</scope>
        </dependency>
	    <dependency>
		    <groupId>io.micrometer</groupId>
		    <artifactId>micrometer-registry-influx</artifactId>
		    <scope>test</scope>
	    </dependency>
	    <dependency>
		    <groupId>io.pivotal.cfenv</groupId>
		    <artifactId>java-cfenv-test-support</artifactId>
		    <scope>test</scope>
		    <version>${java-cfenv-boot.version}</version>
		    <exclusions>
			    <exclusion>
				    <groupId>org.jmockit</groupId>
				    <artifactId>jmockit</artifactId>
			    </exclusion>
		    </exclusions>
	    </dependency>
	    <dependency>
		    <groupId>org.jmockit</groupId>
		    <artifactId>jmockit</artifactId>
		    <version>${jmockit.version}</version>
		    <scope>test</scope>
	    </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>3.0.0</version>
                <configuration>
                    <skip>false</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
