2017-04-03 17:15:36 +02: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>
|
2017-04-04 17:01:38 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
2020-03-16 18:14:15 +01:00
|
|
|
<version>1.1.0</version>
|
2017-04-04 17:01:38 +02:00
|
|
|
</parent>
|
|
|
|
|
2017-04-03 17:15:36 +02:00
|
|
|
<groupId>org.gcube.smartgears.handlers</groupId>
|
|
|
|
<artifactId>resource-registry-handlers</artifactId>
|
2021-01-28 23:22:23 +01:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2019-12-05 17:54:26 +01:00
|
|
|
<name>Resource Registry Handlers</name>
|
2017-10-31 16:31:16 +01:00
|
|
|
<description>Smartgears Handler to publish HostingNode and EService on Resource Registry</description>
|
2017-04-03 17:15:36 +02:00
|
|
|
|
2017-04-04 14:01:32 +02:00
|
|
|
<properties>
|
2017-04-04 16:55:00 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
|
|
|
<serviceClass>Common</serviceClass>
|
2017-04-04 14:01:32 +02:00
|
|
|
</properties>
|
2017-04-04 16:55:00 +02:00
|
|
|
|
|
|
|
<scm>
|
2020-03-16 18:25:36 +01: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-04-04 16:55:00 +02:00
|
|
|
</scm>
|
2017-04-04 14:01:32 +02:00
|
|
|
|
2017-04-03 17:15:36 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
2017-04-04 16:55:00 +02:00
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
2021-06-29 18:16:16 +02:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2017-04-03 17:15:36 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-publisher</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-smartgears</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-10-02 09:22:17 +02:00
|
|
|
<groupId>org.gcube.resource-management</groupId>
|
|
|
|
<artifactId>gcube-model</artifactId>
|
2017-04-03 17:15:36 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-10-07 14:03:17 +02:00
|
|
|
<!-- Tests -->
|
|
|
|
<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>
|
2017-04-03 17:15:36 +02:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2017-04-04 14:01:32 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-10-31 16:31:16 +01:00
|
|
|
<id>make-uberjar</id>
|
2017-04-04 14:01:32 +02:00
|
|
|
<phase>install</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-04-03 17:15:36 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-09-22 13:47:31 +02:00
|
|
|
</project>
|