2017-10-30 14:31:46 +01: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>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
2019-10-03 15:23:53 +02:00
|
|
|
<version>1.1.0</version>
|
2017-10-30 14:31:46 +01:00
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-database-creator</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>Resource Registry Database Creator</name>
|
|
|
|
<description>Create Database and all Types inside it</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<serviceClass>InformationSystem</serviceClass>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2019-10-03 15:08:28 +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>
|
2017-10-30 14:31:46 +01:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2020-06-25 14:58:02 +02:00
|
|
|
<version>1.6.0-SNAPSHOT</version>
|
2017-10-30 14:31:46 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-bom</artifactId>
|
2020-06-25 14:58:02 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2017-10-30 14:31:46 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-09-28 17:58:14 +02:00
|
|
|
<groupId>org.gcube.resource-management</groupId>
|
|
|
|
<artifactId>gcube-model</artifactId>
|
2017-10-30 14:31:46 +01:00
|
|
|
</dependency>
|
2018-07-20 16:14:33 +02:00
|
|
|
|
2018-09-06 15:22:25 +02:00
|
|
|
<!--
|
2017-10-30 14:31:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>parthenos-entities</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2018-09-06 15:22:25 +02:00
|
|
|
-->
|
|
|
|
|
2018-04-12 15:04:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>context-enumeration</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
|
|
|
|
2017-10-30 14:31:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry</artifactId>
|
2020-06-25 14:58:02 +02:00
|
|
|
<version>[4.0.0-SNAPSHOT, 5.0.0-SNAPSHOT)</version>
|
2017-10-30 14:31:46 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-12-05 17:33:18 +01:00
|
|
|
<id>make-servicearchive</id>
|
|
|
|
<phase>package</phase>
|
2017-10-30 14:31:46 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|