2015-09-29 18:13:14 +02:00
|
|
|
<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.dataanalysis</groupId>
|
|
|
|
<artifactId>seadatanetconnector</artifactId>
|
2017-09-07 12:17:31 +02:00
|
|
|
<version>1.2.0-SNAPSHOT</version>
|
2015-09-29 18:13:14 +02:00
|
|
|
<name>seadatanetconnector</name>
|
|
|
|
<description>seadatanetconnector</description>
|
2015-10-19 10:39:11 +02:00
|
|
|
|
2017-09-07 12:17:31 +02:00
|
|
|
<dependencies>
|
2015-10-19 10:39:11 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.dataanalysis</groupId>
|
2017-09-07 12:17:31 +02:00
|
|
|
<artifactId>ecological-engine-geospatial-extensions</artifactId>
|
|
|
|
<version>(1.0.0, 2.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.5</version>
|
2015-10-19 10:39:11 +02:00
|
|
|
</dependency>
|
2017-09-07 12:17:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
2015-09-29 18:13:14 +02:00
|
|
|
</dependencies>
|
2015-10-19 10:39:11 +02:00
|
|
|
|
2015-09-29 18:13:14 +02:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2017-09-07 12:17:31 +02:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2015-09-29 18:13:14 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-04-01 16:04:11 +02:00
|
|
|
<plugin>
|
2017-09-07 12:17:31 +02:00
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
2015-10-26 11:32:53 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-09-07 12:17:31 +02:00
|
|
|
<id>copy-resources</id>
|
|
|
|
<!-- here the phase you need -->
|
|
|
|
<phase>validate</phase>
|
2015-10-26 11:32:53 +01:00
|
|
|
<goals>
|
2017-09-07 12:17:31 +02:00
|
|
|
<goal>copy-resources</goal>
|
2015-10-26 11:32:53 +01:00
|
|
|
</goals>
|
2017-09-07 12:17:31 +02:00
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/resources</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
|
2015-10-26 11:32:53 +01:00
|
|
|
</execution>
|
2016-04-01 16:04:11 +02:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-09-29 18:13:14 +02:00
|
|
|
</plugins>
|
2016-04-01 16:04:11 +02:00
|
|
|
|
2015-09-29 18:13:14 +02:00
|
|
|
</build>
|
|
|
|
</project>
|