2021-12-07 12:16:29 +01: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-plugin-framework</artifactId>
|
2022-01-17 13:30:21 +01:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2021-12-07 12:16:29 +01:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.application.cms</groupId>
|
|
|
|
<artifactId>gcube-cms-suite</artifactId>
|
2022-01-14 12:40:15 +01:00
|
|
|
<version>1.0.1</version>
|
2021-12-07 12:16:29 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
|
|
|
|
<sis.version>1.0</sis.version>
|
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:${gitBaseUrl}/gcube-cms-suite</connection>
|
|
|
|
<developerConnection>scm:git:${gitBaseUrl}/gcube-cms-suite</developerConnection>
|
|
|
|
<url>${gitBaseUrl}/gcube-cms-suite</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-12-15 17:23:31 +01:00
|
|
|
<groupId>org.gcube.application.cms</groupId>
|
2021-12-07 12:16:29 +01:00
|
|
|
<artifactId>geoportal-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
2022-01-17 13:30:21 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-12-07 12:16:29 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|