2017-10-21 22:34:40 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-04-27 18:29:47 +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">
|
2017-10-21 22:34:40 +02:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-04-06 09:53:58 +02:00
|
|
|
<parent>
|
2017-10-21 22:34:40 +02:00
|
|
|
<groupId>org.gcube.tools</groupId>
|
2022-04-05 16:15:19 +02:00
|
|
|
<artifactId>maven-parent</artifactId>
|
2024-09-19 15:29:15 +02:00
|
|
|
<version>1.2.0</version>
|
2017-10-21 22:34:40 +02:00
|
|
|
</parent>
|
|
|
|
|
2017-10-21 22:41:46 +02:00
|
|
|
<groupId>org.gcube.social-networking</groupId>
|
2022-04-05 16:15:19 +02:00
|
|
|
<artifactId>social-service-model</artifactId>
|
2024-10-25 18:44:26 +02:00
|
|
|
<version>1.4.0-SNAPSHOT</version>
|
2017-10-21 22:34:40 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>social-networking-service-model</name>
|
|
|
|
<description>Social networking service model classes</description>
|
|
|
|
|
|
|
|
<properties>
|
2018-02-19 14:26:59 +01:00
|
|
|
<java-version>1.8</java-version>
|
2018-02-16 18:41:59 +01:00
|
|
|
<version.jersey>2.9</version.jersey>
|
2022-04-29 14:52:03 +02:00
|
|
|
<jackson.version>2.8.11</jackson.version>
|
2022-04-27 18:29:47 +02:00
|
|
|
<enunciate.version>2.14.0</enunciate.version>
|
2017-10-24 14:36:32 +02:00
|
|
|
<gCubeSubsystem>social-networking</gCubeSubsystem>
|
2017-10-21 22:34:40 +02:00
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
|
|
|
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2018-02-16 18:41:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
2022-04-06 09:53:58 +02:00
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
2024-10-25 18:44:26 +02:00
|
|
|
<version>2.5.1</version>
|
2018-02-16 18:41:59 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
2017-10-21 22:34:40 +02:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2022-04-06 09:53:58 +02:00
|
|
|
|
2017-10-21 22:34:40 +02:00
|
|
|
<scm>
|
2022-04-06 16:30:56 +02: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>
|
2017-10-21 22:34:40 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencies>
|
2024-10-25 18:44:26 +02:00
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gcube-jackson-annotations</artifactId>
|
|
|
|
</dependency> -->
|
|
|
|
|
2022-05-02 18:46:40 +02:00
|
|
|
<!-- enunciate deps -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
<artifactId>enunciate-core-annotations</artifactId>
|
|
|
|
<version>${enunciate.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
<artifactId>enunciate-rt-util</artifactId>
|
|
|
|
<version>${enunciate.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-10-20 15:17:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-10-21 22:34:40 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.ext</groupId>
|
|
|
|
<artifactId>jersey-bean-validation</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-10-24 18:14:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-10-21 22:34:40 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-04-27 18:29:47 +02:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
|
|
|
</configuration>
|
|
|
|
<version>3.1.0</version>
|
2017-10-21 22:34:40 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-04-27 18:29:47 +02:00
|
|
|
<id>generate-doc</id>
|
|
|
|
<phase>install</phase>
|
2017-10-21 22:34:40 +02:00
|
|
|
<goals>
|
2022-04-27 18:29:47 +02:00
|
|
|
<goal>jar</goal>
|
2017-10-21 22:34:40 +02:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-04-05 16:15:19 +02:00
|
|
|
</project>
|