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

  <groupId>org.gcube.dataanalysis</groupId>
  <artifactId>cmems-importer-api</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>cmems-importer-api</name>
  <description>TODO</description>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.gcube.distribution</groupId>
        <artifactId>gcube-bom</artifactId>
        <version>LATEST</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    
    <!-- external deps -->
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.6</version>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.9</version>
    </dependency>
    
    <!--  testing and logging -->
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
    	<groupId>org.gcube.dataanalysis</groupId>
    	<artifactId>dataset-importer-common</artifactId>
    	<version>[1.0.0-SNAPSHOT, 2.0.0)</version>
    </dependency>
  </dependencies>

</project>