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.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
2019-07-10 03:20:36 +02:00
|
|
|
<version>1.1.0</version>
|
2019-03-22 12:21:36 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gxREST</artifactId>
|
2022-06-15 17:57:12 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2019-03-22 12:21:36 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>gCube eXtensions to REST</name>
|
|
|
|
<description>gCube eXtensions to REST</description>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>gxHTTP</module>
|
|
|
|
<module>gxJRS</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<serviceClass>Common</serviceClass>
|
|
|
|
<jersey.version>2.25.1</jersey.version>
|
|
|
|
<jaxrs.version>2.0.1</jaxrs.version>
|
|
|
|
</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:19:23 +02:00
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/gx-rest</url>
|
2019-03-22 12:21:36 +01:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
2022-07-15 16:00:24 +02:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2019-03-22 12:21:36 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|