2019-03-22 12:21:36 +01: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>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gxREST</artifactId>
|
2021-06-23 14:22:19 +02:00
|
|
|
<version>1.2.0</version>
|
2019-03-22 12:21:36 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>gxJRS</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>gCube eXtensions to JAX-RS</name>
|
|
|
|
<description>gCube eXtensions to REST based on JAX-RS</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2019-10-17 17:50:57 +02:00
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/gx-rest</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/gx-rest</developerConnection>
|
2019-10-20 05:14:03 +02:00
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/gx-rest</url>
|
2019-03-22 12:21:36 +01:00
|
|
|
</scm>
|
2019-04-10 05:08:19 +02:00
|
|
|
|
2019-03-22 12:21:36 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.glassfish.jersey/jersey-bom -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey</groupId>
|
|
|
|
<artifactId>jersey-bom</artifactId>
|
|
|
|
<version>${jersey.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2020-08-06 14:51:24 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2019-03-22 12:21:36 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gxHTTP</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-client</artifactId>
|
|
|
|
</dependency>
|
2020-08-06 14:51:24 +02:00
|
|
|
|
2019-03-22 12:21:36 +01:00
|
|
|
<dependency>
|
2020-08-06 14:51:24 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gcube-jackson-databind</artifactId>
|
2019-03-22 12:21:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-08-06 14:51:24 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gcube-jackson-core</artifactId>
|
2019-03-22 12:21:36 +01:00
|
|
|
</dependency>
|
2020-08-06 14:51:24 +02:00
|
|
|
|
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>com.fasterxml.jackson.core</groupId> -->
|
|
|
|
<!-- <artifactId>jackson-core</artifactId> -->
|
|
|
|
<!-- </dependency> -->
|
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>com.fasterxml.jackson.core</groupId> -->
|
|
|
|
<!-- <artifactId>jackson-databind</artifactId> -->
|
|
|
|
<!-- </dependency> -->
|
|
|
|
|
2019-03-22 12:21:36 +01:00
|
|
|
|
|
|
|
<!-- Test Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
|
|
<artifactId>jersey-hk2</artifactId>
|
|
|
|
<version>2.27</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-servicearchive</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|