<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>com.anrisoftware.propertiesutils</groupId>
		<artifactId>propertiesutils-parent</artifactId>
		<version>2.0</version>
		<relativePath>../propertiesutils-parent</relativePath>
	</parent>

	<artifactId>propertiesutils-contextproperties</artifactId>
	<name>Properties Utilities :: Context Properties</name>
	<description>Loads properties in a context of a class.</description>
	<url>https://anrisoftware.com/projects/projects/propertiesutils-contextproperties</url>
	<inceptionYear>2012</inceptionYear>

	<issueManagement>
		<system>Redmine</system>
		<url>https://anrisoftware.com/projects/projects/propertiesutils</url>
	</issueManagement>

	<scm>
		<connection>scm:git:git@anrisoftware.com:propertiesutils.git</connection>
		<developerConnection>scm:git:git@anrisoftware.com:propertiesutils.git</developerConnection>
		<url>https://anrisoftware.com/projects/projects/propertiesutils/repository</url>
	</scm>

    <distributionManagement>
        <site>
          <id>anrisoftware</id>
          <url>dav:https://anrisoftware.com/javadoc/${project.groupId}/${project.artifactId}</url>
        </site>
        <repository>
            <id>osssonatype</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
        </repository>
        <snapshotRepository>
            <id>osssonatype_snapshots</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

	<dependencies>

		<!-- test dependencies -->
		<dependency>
			<groupId>com.anrisoftware.globalpom</groupId>
			<artifactId>globalpom-groovytestutils</artifactId>
			<scope>test</scope>
		</dependency>

		<!-- compile dependencies -->
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
		</dependency>

		<!-- for date context properties -->
		<dependency>
			<groupId>joda-time</groupId>
			<artifactId>joda-time</artifactId>
			<optional>true</optional>
		</dependency>

        <!-- for byte context properties -->
        <dependency>
            <groupId>com.thoughtworks.xstream</groupId>
            <artifactId>xstream</artifactId>
            <optional>true</optional>
        </dependency>

		<!-- for AbstractContextPropertiesProvider -->
		<dependency>
			<groupId>com.google.inject</groupId>
			<artifactId>guice</artifactId>
			<optional>true</optional>
		</dependency>
	</dependencies>

</project>
