<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.tracee.binding</groupId>
    <artifactId>tracee-httpcomponents</artifactId>
    <packaging>bundle</packaging>

    <parent>
        <groupId>io.tracee</groupId>
        <artifactId>tracee-parent</artifactId>
        <version>1.1.1</version>
		<relativePath>../../pom.xml</relativePath>
    </parent>

    <name>tracee-httpcomponents</name>
    <description>Please refer to https://github.com/tracee/tracee.</description>

    <dependencies>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-api</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-core</artifactId>
			<version>${project.version}</version>
		</dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.0.2</version>
            <scope>provided</scope>
        </dependency>
		<dependency>
			<groupId>io.tracee</groupId>
			<artifactId>tracee-testhelper</artifactId>
		</dependency>
		<dependency>
			<groupId>org.eclipse.jetty</groupId>
			<artifactId>jetty-servlet</artifactId>
			<version>7.3.0.v20110203</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>io.tracee.backend</groupId>
			<artifactId>tracee-threadlocal-store</artifactId>
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>
    </dependencies>
</project>
