social-service-client/pom.xml

184 lines
5.2 KiB
XML
Raw Normal View History

2022-10-20 19:06:42 +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>
<groupId>org.gcube.tools</groupId>
2022-04-05 16:14:50 +02:00
<artifactId>maven-parent</artifactId>
<version>1.1.0</version>
</parent>
2022-04-05 16:14:50 +02:00
<groupId>org.gcube.social-networking</groupId>
2022-04-06 16:03:52 +02:00
<artifactId>social-service-client</artifactId>
2024-04-16 15:59:16 +02:00
<version>2.0.1</version>
2022-04-06 16:03:52 +02:00
<name>social-networking-service-client</name>
<packaging>jar</packaging>
<description>The social networking web service client library</description>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
2022-09-20 11:26:48 +02:00
<version>2.0.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.gcube.distribution</groupId>
2022-04-06 16:03:52 +02:00
<artifactId>gcube-smartgears-bom</artifactId>
2022-09-20 11:26:48 +02:00
<version>2.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
2024-04-16 15:40:44 +02:00
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jaxrs.version>2.0.1</jaxrs.version>
<distroDirectory>${project.basedir}/distro</distroDirectory>
<gCubeSubsystem>social-networking</gCubeSubsystem>
<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>
<scm>
2022-04-06 16:03:52 +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>
</scm>
<dependencies>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>social-networking-library</artifactId>
2024-04-11 14:56:59 +02:00
<version>[2.0.0, 3.0.0)</version>
<scope>compile</scope>
</dependency>
2024-04-16 15:40:44 +02:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.8.7</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.8.7</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.7</version>
</dependency>
<dependency>
<groupId>org.gcube.core</groupId>
<artifactId>common-generic-clients</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.gcube.social-networking</groupId>
2022-04-05 16:14:50 +02:00
<artifactId>social-service-model</artifactId>
2022-10-20 19:01:15 +02:00
<version>[1.2.0-SNAPSHOT, 2.0.0)</version>
</dependency>
2022-10-20 19:06:42 +02:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.2</version>
<scope>provided</scope>
</dependency>
2022-04-05 16:14:50 +02:00
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
2022-04-06 16:03:52 +02:00
<version>2.6</version>
2022-04-05 16:14:50 +02:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
2022-04-06 16:03:52 +02:00
<!-- Test libraries -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2022-04-06 16:03:52 +02:00
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
2022-04-06 16:03:52 +02:00
</dependencies>
<build>
2022-04-05 16:14:50 +02:00
<finalName>${name}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2022-04-06 16:03:52 +02:00
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
2022-04-06 16:03:52 +02:00
<goal>test-jar</goal>
</goals>
</execution>
</executions>
2022-04-06 16:03:52 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
2022-04-06 16:03:52 +02:00
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2022-04-05 16:14:50 +02:00
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
2024-04-16 15:40:44 +02:00
<source>11</source>
<target>11</target>
2022-04-05 16:14:50 +02:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2022-04-05 16:14:50 +02:00
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
2022-04-05 16:14:50 +02:00
<additionalparam>-Xdoclint:none</additionalparam>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
2022-04-05 16:14:50 +02:00
<version>3.1.0</version>
<executions>
<execution>
2022-04-05 16:14:50 +02:00
<id>generate-doc</id>
<phase>install</phase>
<goals>
2022-04-05 16:14:50 +02:00
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-04-05 16:14:50 +02:00
</project>