74 lines
2.4 KiB
XML
74 lines
2.4 KiB
XML
<?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>
|
|
<groupId>org.gcube.application.cms</groupId>
|
|
<artifactId>cms-test-commons</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>CMS Test Commons</name>
|
|
|
|
|
|
<parent>
|
|
<groupId>org.gcube.application.cms</groupId>
|
|
<artifactId>gcube-cms-suite</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
|
|
<sis.version>1.0</sis.version>
|
|
</properties>
|
|
|
|
<scm>
|
|
<connection>scm:git:${gitBaseUrl}/${project.artifactId}.git</connection>
|
|
<developerConnection>scm:git:${gitBaseUrl}/${project.artifactId}.git</developerConnection>
|
|
<url>${gitBaseUrl}/${project.artifactId}.git</url>
|
|
</scm>
|
|
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.gcube.distribution</groupId>
|
|
<artifactId>gcube-bom</artifactId>
|
|
<version>2.0.1</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.distribution</groupId>
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
|
<version>2.1.0</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.gcube.application</groupId>
|
|
<artifactId>geoportal-common</artifactId>
|
|
</dependency>
|
|
|
|
<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>
|
|
<version>[1.0.0,2.0.0-SNAPSHOT)</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |