<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/maven-v4_0_0.xsd">

	<modelVersion>4.0.0</modelVersion>

	<parent>
		<artifactId>gsanalysis-parent</artifactId>
		<groupId>com.anrisoftware.gsanalysis</groupId>
		<version>3.5</version>
		<relativePath>../gsanalysis-parent</relativePath>
	</parent>

	<artifactId>gsanalysis-core</artifactId>
	<name>Global Scaling Analysis :: Core</name>
	<description>The core implementation of Global Scaling Analysis.</description>
	<inceptionYear>2012</inceptionYear>
	<url>https://anrisoftware.com/projects/projects/gsanalysis-core</url>

	<issueManagement>
		<system>Redmine</system>
		<url>https://anrisoftware.com/projects/projects/gsanalysis-core</url>
	</issueManagement>

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

    <distributionManagement>
        <site>
            <id>anrisoftware</id>
            <url>dav:https://anrisoftware.com/javadoc/${project.groupId}/${project.artifactId}</url>
        </site>
    </distributionManagement>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>com.anrisoftware.gsanalysis</groupId>
				<artifactId>gsanalysis-api</artifactId>
				<version>3.5</version>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<dependencies>

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

		<!-- own dependencies -->
		<dependency>
			<groupId>com.anrisoftware.gsanalysis</groupId>
			<artifactId>gsanalysis-api</artifactId>
		</dependency>

		<!-- other dependencies -->
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
		</dependency>
		<dependency>
			<groupId>com.google.inject.extensions</groupId>
			<artifactId>guice-assistedinject</artifactId>
		</dependency>
		<dependency>
			<groupId>com.anrisoftware.globalpom</groupId>
			<artifactId>globalpom-log</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-math3</artifactId>
		</dependency>

		<!-- csv gauges importer -->
		<dependency>
			<groupId>net.sf.supercsv</groupId>
			<artifactId>super-csv</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>com.anrisoftware.globalpom</groupId>
			<artifactId>globalpomutils-data</artifactId>
            <optional>true</optional>
		</dependency>
	</dependencies>

</project>
