2018-06-26 14:58:41 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2019-12-19 17:51:10 +01:00
<project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
2018-06-26 14:58:41 +02:00
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>
2019-12-19 17:51:10 +01:00
<version > 1.1.0</version>
2018-06-26 14:58:41 +02:00
<relativePath />
</parent>
<groupId > org.gcube.common</groupId>
<artifactId > storagehub-client-wrapper</artifactId>
2019-12-19 17:51:10 +01:00
<version > 0.6.1-SNAPSHOT</version>
2018-06-26 14:58:41 +02:00
<name > storagehub-client-wrapper</name>
2020-01-23 12:38:47 +01:00
<description > This is a wrapper of storagehub-client library. It allows to interact with storagehub in a simplified way by exposing several utilities. Moreover, It exposes by another inteface java beans as defined in (the old) HL interfaces</description>
2018-06-26 14:58:41 +02:00
<scm >
2019-12-19 17:51:10 +01:00
<connection > scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
<developerConnection > scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
<url > https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
2018-06-26 14:58:41 +02:00
</scm>
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<distroDirectory > distro</distroDirectory>
</properties>
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
2018-06-27 18:37:15 +02:00
<artifactId > gcube-bom</artifactId>
2019-12-19 17:51:10 +01:00
<version > 1.4.0</version>
2018-06-26 14:58:41 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies >
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
2018-06-27 18:09:12 +02:00
<version > [2.4.0,3.0.1]</version>
2018-06-26 14:58:41 +02:00
<scope > provided</scope>
</dependency>
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
2018-06-27 18:37:15 +02:00
<version > 2.6</version>
2018-06-26 14:58:41 +02:00
</dependency>
<dependency >
<groupId > org.projectlombok</groupId>
<artifactId > lombok</artifactId>
<version > 1.14.8</version>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > storagehub-client-library</artifactId>
2019-12-19 17:51:10 +01:00
<version > [1.0.0,2.0.0-SNAPSHOT)</version>
2018-07-02 17:30:42 +02:00
<scope > compile</scope>
2018-06-26 14:58:41 +02:00
</dependency>
2019-12-19 17:51:10 +01:00
2018-06-26 14:58:41 +02:00
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-encryption</artifactId>
<scope > provided</scope>
</dependency>
<!-- FWS -->
<dependency >
<groupId > org.gcube.resources.discovery</groupId>
<artifactId > ic-client</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-scope-maps</artifactId>
</dependency>
<!-- END FWS -->
<!-- LOGGER -->
<dependency >
<groupId > org.slf4j</groupId>
2018-06-27 18:37:15 +02:00
<artifactId > slf4j-api</artifactId>
2018-06-26 14:58:41 +02:00
</dependency>
2018-06-27 18:37:15 +02:00
2018-06-26 14:58:41 +02:00
<dependency >
<groupId > org.slf4j</groupId>
2018-06-27 18:37:15 +02:00
<artifactId > slf4j-log4j12</artifactId>
<version > 1.6.4</version>
2018-06-26 14:58:41 +02:00
</dependency>
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 4.12</version>
<scope > test</scope>
</dependency>
</dependencies>
<build >
<resources >
<resource >
<directory > src/main/java</directory>
<includes >
<include > **/*.*</include>
</includes>
</resource>
<resource >
<directory > src/main/resources</directory>
<includes >
<include > **/*.*</include>
</includes>
</resource>
</resources>
<finalName > ${artifactId}</finalName>
<plugins >
<plugin >
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-assembly-plugin</artifactId>
<configuration >
<descriptors >
2019-12-19 17:51:10 +01:00
<descriptor > descriptor.xml</descriptor>
2018-06-26 14:58:41 +02:00
</descriptors>
</configuration>
<executions >
<execution >
<id > servicearchive</id>
<phase > install</phase>
<goals >
<goal > single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>