<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>org.acme</groupId>
	<artifactId>dart-playground</artifactId>
	<version>0.0.1-SNAPSHOT</version>

	<packaging>pom</packaging>

  <properties>
    <snapshots-name>gcube-snapshots</snapshots-name>
    <snapshots-url>http://maven.research-infrastructures.eu:8081/nexus/content/repositories/gcube-snapshots</snapshots-url>
  </properties>

  <distributionManagement>
    <snapshotRepository>
      <id>${snapshots-name}</id>
      <url>${snapshots-url}</url>
    </snapshotRepository>
  </distributionManagement>

  <repositories>
      <repository>
          <id>${snapshots-name}</id>
          <url>${snapshots-url}</url>
      </repository>
  </repositories>

	<build>
		<plugins>

			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<configuration>
					<descriptors>
						<descriptor>descriptor.xml</descriptor>
					</descriptors>
				</configuration>
				<executions>
					<execution>
						<id>resources</id>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
				<inherited>false</inherited>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>