2021-09-20 18:11:51 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
|
|
|
<artifactId>cms-test-commons</artifactId>
|
2022-01-17 18:19:40 +01:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2021-09-20 18:11:51 +02:00
|
|
|
<name>CMS Test Commons</name>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.application.cms</groupId>
|
|
|
|
<artifactId>gcube-cms-suite</artifactId>
|
2022-02-24 18:09:30 +01:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2021-09-20 18:11:51 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
|
|
|
|
<sis.version>1.0</sis.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2021-10-12 15:43:35 +02:00
|
|
|
<connection>scm:git:${gitBaseUrl}/gcube-cms-suite</connection>
|
|
|
|
<developerConnection>scm:git:${gitBaseUrl}/gcube-cms-suite</developerConnection>
|
|
|
|
<url>${gitBaseUrl}/gcube-cms-suite</url>
|
2021-09-20 18:11:51 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2022-03-16 12:11:05 +01:00
|
|
|
<version>2.0.2</version>
|
2021-09-20 18:11:51 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
2022-03-16 12:11:05 +01:00
|
|
|
<version>2.1.1</version>
|
2021-09-20 18:11:51 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
2022-03-16 15:20:34 +01:00
|
|
|
|
2021-09-20 18:11:51 +02:00
|
|
|
<dependency>
|
2021-12-15 17:23:31 +01:00
|
|
|
<groupId>org.gcube.application.cms</groupId>
|
2021-09-20 18:11:51 +02:00
|
|
|
<artifactId>geoportal-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-12 18:42:22 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.application.cms</groupId>
|
|
|
|
<artifactId>cms-plugin-framework</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-09-20 18:11:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>storagehub-client-library</artifactId>
|
|
|
|
</dependency>
|
2021-09-24 12:19:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
</dependency>
|
2022-03-16 15:20:34 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j18-impl</artifactId>
|
|
|
|
<version>2.13.3</version>
|
|
|
|
</dependency>
|
2021-09-20 18:11:51 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|