gcube-cms-suite/concessioni-lifecycle/pom.xml

99 lines
2.9 KiB
XML
Raw Permalink Normal View History

2021-12-15 17:23:31 +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>
2022-01-12 18:42:22 +01:00
<artifactId>concessioni-lifecycle</artifactId>
2022-01-17 18:25:07 +01:00
<version>1.0.1-SNAPSHOT</version>
2022-01-14 12:31:11 +01:00
<name>GNA Concessioni Lifecycle</name>
2021-12-15 17:23:31 +01:00
<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-12-15 17:23:31 +01:00
</parent>
<properties>
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
</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>
2022-03-16 16:47:17 +01:00
<dependencyManagement>
<dependencies>
2021-12-15 17:23:31 +01:00
<dependency>
<groupId>org.gcube.application.cms</groupId>
<artifactId>cms-plugin-framework</artifactId>
2022-03-16 16:47:17 +01:00
<version>1.0.1-SNAPSHOT</version>
2022-03-16 17:00:28 +01:00
<type>pom</type>
2022-03-16 16:47:17 +01:00
<scope>import</scope>
2021-12-15 17:23:31 +01:00
</dependency>
2022-03-16 16:47:17 +01:00
</dependencies>
</dependencyManagement>
2021-12-15 17:23:31 +01:00
2022-03-16 16:47:17 +01:00
<dependencies>
2021-12-15 17:23:31 +01:00
<dependency>
<groupId>org.gcube.application.cms</groupId>
2022-03-16 16:47:17 +01:00
<artifactId>cms-plugin-framework</artifactId>
2021-12-15 17:23:31 +01:00
</dependency>
2022-03-16 16:47:17 +01:00
2022-01-14 12:31:11 +01:00
<dependency>
<groupId>org.gcube.application.cms</groupId>
<artifactId>concessioni-model</artifactId>
</dependency>
2022-02-14 12:23:13 +01:00
2022-03-16 16:47:17 +01:00
<!-- &lt;!&ndash; SDI &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.gcube.spatial.data</groupId>-->
<!-- <artifactId>gis-interface</artifactId>-->
<!-- <version>[2.4.6,3.0.0)</version>-->
<!-- </dependency>-->
2022-02-14 12:23:13 +01:00
<!-- DT -->
<dependency>
<groupId>org.gcube.data.transfer</groupId>
<artifactId>data-transfer-library</artifactId>
<version>[1.2.1,2.0.0]</version>
</dependency>
2022-03-16 16:47:17 +01:00
<dependency>
<groupId>org.gcube.application.cms</groupId>
<artifactId>cms-test-commons</artifactId>
<scope>test</scope>
</dependency>
2021-12-15 17:23:31 +01:00
</dependencies>
2022-03-15 11:09:39 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-uberjar</id>
<phase>package</phase>
</execution>
<execution>
<id>make-servicearchive</id>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
2021-12-15 17:23:31 +01:00
</project>