2013-04-17 14:00:21 +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>
</parent>
<groupId > org.gcube.data.transfer</groupId>
<artifactId > uri-resolver</artifactId>
2017-05-15 14:45:20 +02:00
<version > 1.12.0-SNAPSHOT</version>
2013-04-17 14:00:21 +02:00
<packaging > war</packaging>
2016-03-14 17:07:56 +01:00
<description > The URI Resolver is an HTTP URI resolver implemented as an HTTP servlet which gives access trough HTTP to different protocols URIs. </description>
2013-04-17 14:00:21 +02:00
2016-03-22 18:01:57 +01:00
<scm >
<connection > scm:svn:http://svn.d4science.research-infrastructures.eu/gcube/trunk/data-transfer/${project.artifactId}</connection>
<developerConnection > scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-transfer/${project.artifactId}</developerConnection>
<url > http://svn.d4science.research-infrastructures.eu/gcube/trunk/data-transfer/${project.artifactId}</url>
</scm>
2013-04-17 14:00:21 +02:00
<properties >
<distroDirectory > distro</distroDirectory>
</properties>
<dependencies >
2014-10-13 18:55:53 +02:00
2016-03-22 18:01:57 +01:00
<!-- <dependency> -->
<!-- <groupId>org.apache.tomcat</groupId> -->
<!-- <artifactId>catalina</artifactId> -->
<!-- <version>6.0.16</version> -->
<!-- </dependency> -->
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 4.8.2</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-wrapper</artifactId>
<version > [2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
</dependency>
2016-12-02 16:59:04 +01:00
<dependency >
<groupId > org.json</groupId>
<artifactId > json</artifactId>
<version > 20140107</version>
<scope > compile</scope>
</dependency>
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-core</artifactId>
<version > [2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
<exclusions >
<exclusion >
<artifactId > slf4j-nop</artifactId>
<groupId > org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
<version > 3.0.1</version>
2013-04-25 00:01:46 +02:00
<scope > provided</scope>
2013-04-17 14:00:21 +02:00
2013-03-14 12:00:28 +01:00
</dependency>
2014-10-10 14:53:39 +02:00
<!-- GIS RESOLVER DEPENDENCIES -->
<dependency >
<groupId > org.gcube.spatial.data</groupId>
<artifactId > geonetwork</artifactId>
2016-06-09 11:36:25 +02:00
<version > [3.0.0-SNAPSHOT, 4.0.0-SNAPSHOT)</version>
2014-10-10 14:53:39 +02:00
<scope > compile</scope>
</dependency>
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-encryption</artifactId>
<version > [1.0.1-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
<scope > compile</scope>
</dependency>
<dependency >
<groupId > org.gcube.resources.discovery</groupId>
<artifactId > discovery-client</artifactId>
<version > [1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
</dependency>
2014-10-13 18:55:53 +02:00
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<version > 2.6</version>
</dependency>
2014-10-10 14:53:39 +02:00
<!-- DOM -->
<dependency >
<groupId > org.w3c</groupId>
<artifactId > dom</artifactId>
<version > 2.3.0-jaxb-1.0.6</version>
<scope > compile</scope>
</dependency>
<!-- END GIS RESOLVER DEPENDENCIES -->
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
<version > 1.6.4</version>
</dependency>
<dependency >
<groupId > commons-io</groupId>
<artifactId > commons-io</artifactId>
<version > 1.2</version>
</dependency>
2013-04-17 14:00:21 +02:00
</dependencies>
<build >
2014-11-13 15:19:08 +01:00
2014-10-13 19:05:53 +02:00
<resources >
<resource >
<directory > src/main/java</directory>
<includes >
<include > **/*.*</include>
</includes>
</resource>
2014-11-13 15:19:08 +01:00
2014-10-14 11:20:47 +02:00
<resource >
<directory > src/main/resources</directory>
<includes >
<include > **/*.*</include>
</includes>
</resource>
2014-10-13 19:05:53 +02:00
</resources>
2014-10-15 14:14:10 +02:00
<finalName > ${artifactId}</finalName>
2014-11-13 15:19:08 +01:00
2013-04-17 14:00:21 +02:00
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-resources-plugin</artifactId>
<version > 2.5</version>
<executions >
<execution >
<id > copy-profile</id>
<phase > install</phase>
<goals >
<goal > copy-resources</goal>
</goals>
<configuration >
<outputDirectory > target</outputDirectory>
<resources >
<resource >
<directory > ${distroDirectory}</directory>
<filtering > true</filtering>
<includes >
<include > profile.xml</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</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>
2013-03-14 12:00:28 +01:00
</project>