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

    <artifactId>tracee-context-logger-http-connector</artifactId>
    <packaging>bundle</packaging>

    <parent>
        <groupId>io.tracee</groupId>
        <artifactId>tracee-context-logger-connector-parent</artifactId>
        <version>0.3.0</version>
    </parent>

    <name>tracee-context-logger-http-connector</name>
    <description>Please refer to https://github.com/holisticon/tracee.</description>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-enforcer-plugin</artifactId>
                <executions>
                    <execution>
                        <id>enforce</id>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                        <configuration>
                            <rules>
                                <bannedDependencies>
                                    <searchTransitive>false</searchTransitive>
                                    <excludes><exclude>*</exclude></excludes>
                                    <includes>
                                        <include>*:*:*:*:test:*</include>
                                        <include>*:*:*:*:provided:*</include>
                                        <include>io.tracee:*</include>
                                        <include>com.ning:async-http-client</include>
                                    </includes>
                                </bannedDependencies>
                            </rules>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>

    </build>

    <dependencies>
	
        <dependency>
            <groupId>io.tracee</groupId>
            <artifactId>tracee-api</artifactId>
            <version>0.3.0</version>
        </dependency>

        <dependency>
            <groupId>io.tracee</groupId>
            <artifactId>tracee-context-logger-api</artifactId>
            <version>0.3.0</version>
        </dependency>

		<dependency>
            <groupId>com.ning</groupId>
            <artifactId>async-http-client</artifactId>
            <version>1.8.2</version>
        </dependency>

        <!-- dependecies for unittests -->
        <dependency>
            <groupId>io.tracee.backend</groupId>
            <artifactId>tracee-slf4j</artifactId>
            <version>0.3.0</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <scope>test</scope>
        </dependency>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-testhelper</artifactId>
			<version>0.3.0</version>
			<scope>test</scope>
		</dependency>
    </dependencies>

</project>
