<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>importer-common</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>importer-common</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>
  <!--
    <dependency>
      <groupId>org.gcube.resources.discovery</groupId>
      <artifactId>ic-client</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.gcube.resources.discovery</groupId>
      <artifactId>discovery-client</artifactId>
      <scope>provided</scope>
    </dependency>
  -->
    <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>
  </dependencies>

<!-- 
  <build>
    <sourceDirectory>src/main/java</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.7.0</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  -->
  
</project>