<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>
		<artifactId>maven-parent</artifactId>
		<groupId>org.gcube.tools</groupId>
		<version>1.0.0</version>
		<relativePath />
	</parent>

	<groupId>org.gcube.resources.federation</groupId>
	<artifactId>fhn-occi-connector</artifactId>
	<version>1.0.0-SNAPSHOT</version>
	<name>FHNManager OCCI Connector</name>
	<description>Connector for accessing FedCloud Occi exposing-sites</description>

	<properties>
		<distroDirectory>${project.basedir}/distro</distroDirectory>
	</properties>

<scm>
	<connection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/vo-management/${project.artifactId}</connection>
	<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/vo-management/${project.artifactId}</developerConnection>
	<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/vo-management/${project.artifactId}</url>
</scm>



	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<version>2.17</version>
			</plugin>
		</plugins>
	</reporting>

	<build>
		<plugins>
			<plugin>
				<groupId>org.jacoco</groupId>
				<artifactId>jacoco-maven-plugin</artifactId>
				<version>0.7.6.201602180812</version>
				<executions>
					<execution>
						<goals>
							<goal>prepare-agent</goal>
						</goals>
					</execution>
					<execution>
						<id>report</id>
						<phase>prepare-package</phase>
						<goals>
							<goal>report</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
				<plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-assembly-plugin</artifactId>
		<configuration>
			<descriptors>
				<descriptor>${distroDirectory}/descriptor.xml</descriptor>
			</descriptors>
		</configuration>
		<executions>
			<execution>
				<id>servicearchive</id>
				<phase>install</phase>
				<goals>
					<goal>single</goal>
				</goals>
			</execution>
		</executions>
	</plugin>
		</plugins>
	</build>


	<dependencies>
		<dependency>
			<groupId>org.gcube.resources.federation</groupId>
			<artifactId>fhn-manager-api</artifactId>
			<version>1.1.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
		</dependency>
		<dependency>
			<groupId>org.yaml</groupId>
			<artifactId>snakeyaml</artifactId>
			<version>1.16</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
		</dependency>
		<dependency>
			<groupId>cz.cesnet.cloud</groupId>
			<artifactId>jocci-core</artifactId>
			<version>0.2.4</version>
		</dependency>
		<dependency>
			<groupId>cz.cesnet.cloud</groupId>
			<artifactId>jocci-api</artifactId>
			<version>0.2.6</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.7</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.7</version>
			<scope>test</scope>
		</dependency>
 <dependency>
      <groupId>org.ehcache</groupId>
      <artifactId>ehcache</artifactId>
      <version>3.0.0.rc2</version>
    </dependency>

	</dependencies>
</project>