2016-05-26 18:12:53 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-12-03 15:39:55 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-05-26 18:12:53 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
2023-07-25 15:24:37 +02:00
|
|
|
<version>1.2.0</version>
|
2016-05-26 18:12:53 +02:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>ckan-metadata-publisher-widget</artifactId>
|
2024-07-11 10:35:36 +02:00
|
|
|
<version>2.3.0-SNAPSHOT</version>
|
2016-05-26 18:12:53 +02:00
|
|
|
<name>gCube Ckan metadata publisher widget</name>
|
|
|
|
|
|
|
|
<description>
|
2016-11-11 19:31:05 +01:00
|
|
|
gCube Ckan metadata publisher widget is a GWT Widget that allows to publish metadata on the d4science ckan data catalogue.
|
2016-05-26 18:12:53 +02:00
|
|
|
</description>
|
|
|
|
<scm>
|
2019-12-03 15:39:55 +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>
|
2016-05-26 18:12:53 +02:00
|
|
|
</scm>
|
|
|
|
|
2019-12-03 15:39:55 +01:00
|
|
|
|
2016-05-26 18:12:53 +02:00
|
|
|
<properties>
|
|
|
|
<!-- Convenience property to set the GWT version -->
|
2022-10-27 11:24:09 +02:00
|
|
|
<gwtVersion>2.9.0</gwtVersion>
|
2019-12-03 15:39:55 +01:00
|
|
|
<!-- <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory> -->
|
2016-05-26 18:12:53 +02:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2022-10-27 11:24:09 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2017-05-18 11:42:49 +02:00
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2016-05-26 18:12:53 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
2022-06-28 14:54:49 +02:00
|
|
|
<version>3.6.4</version>
|
2016-05-26 18:12:53 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-10-27 12:04:50 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-dev</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-05-26 18:12:53 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.gwtbootstrap</groupId>
|
|
|
|
<artifactId>gwt-bootstrap</artifactId>
|
|
|
|
<version>2.3.2.0</version>
|
|
|
|
</dependency>
|
2019-02-21 17:24:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>openlayer-basic-widgets</artifactId>
|
2019-12-03 15:20:08 +01:00
|
|
|
<version>[1.0.0, 2.0.0-SNAPSHOT)</version>
|
2019-02-22 12:10:13 +01:00
|
|
|
<scope>compile</scope>
|
2019-02-21 17:24:43 +01:00
|
|
|
</dependency>
|
2016-05-26 18:12:53 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2016-06-13 11:02:53 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-26 18:12:53 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2016-06-13 11:02:53 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-26 18:12:53 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common.portal</groupId>
|
|
|
|
<artifactId>portal-manager</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-02-02 17:09:09 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>metadata-profile-form-builder-widget</artifactId>
|
2024-05-16 10:45:08 +02:00
|
|
|
<version>[2.0.0, 3.0.0-SNAPSHOT)</version>
|
2024-02-02 17:09:09 +01:00
|
|
|
</dependency>
|
2017-04-05 18:42:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.data-catalogue</groupId>
|
|
|
|
<artifactId>gcubedatacatalogue-metadata-discovery</artifactId>
|
2019-12-03 15:20:08 +01:00
|
|
|
<version>[3.0.0, 4.0.0-SNAPSHOT)</version>
|
2017-04-05 18:42:07 +02:00
|
|
|
</dependency>
|
2024-02-16 15:35:09 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>uri-resolver-manager</artifactId>
|
2024-04-12 16:10:50 +02:00
|
|
|
<version>[1.7.0, 2.0.0-SNAPSHOT)</version>
|
2024-02-16 15:35:09 +01:00
|
|
|
</dependency>
|
2016-05-26 18:12:53 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.portlet</groupId>
|
|
|
|
<artifactId>portlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>portal-service</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-11-17 14:08:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>social-networking-library</artifactId>
|
2016-11-02 23:38:10 +01:00
|
|
|
<scope>provided</scope>
|
2016-05-26 18:12:53 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>custom-portal-handler</artifactId>
|
2019-12-03 15:20:08 +01:00
|
|
|
<version>[2.0.0, 3.0.0-SNAPSHOT)</version>
|
2016-05-26 18:12:53 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2021-04-09 14:55:34 +02:00
|
|
|
|
2016-05-27 19:08:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
2021-04-09 14:55:34 +02:00
|
|
|
<artifactId>storagehub-client-wrapper</artifactId>
|
|
|
|
<version>[1.0.0, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>compile</scope>
|
2016-05-27 19:08:03 +02:00
|
|
|
</dependency>
|
2021-04-09 14:55:34 +02:00
|
|
|
|
2016-05-27 19:08:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.dvos</groupId>
|
|
|
|
<artifactId>usermanagement-core</artifactId>
|
2019-12-03 15:20:08 +01:00
|
|
|
<version>[2.0.0,)</version>
|
2016-05-27 19:08:03 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2021-04-09 14:55:34 +02:00
|
|
|
|
2016-06-06 17:24:52 +02:00
|
|
|
<dependency>
|
2021-04-09 14:55:34 +02:00
|
|
|
<groupId>org.gcube.datacatalogue</groupId>
|
|
|
|
<artifactId>catalogue-util-library</artifactId>
|
2024-05-16 10:45:08 +02:00
|
|
|
<version>[1.0.0, 2.0.0)</version>
|
2016-06-13 11:02:53 +02:00
|
|
|
<scope>compile</scope>
|
2016-06-06 17:24:52 +02:00
|
|
|
</dependency>
|
2021-04-09 14:55:34 +02:00
|
|
|
|
2016-05-27 19:08:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-scope-maps</artifactId>
|
2016-09-14 16:29:52 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-27 19:08:03 +02:00
|
|
|
<!-- put at provided for deploying -->
|
|
|
|
</dependency>
|
2021-04-09 14:55:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>workspace-explorer</artifactId>
|
|
|
|
<version>[2.0.0, 3.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-05-27 19:08:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>gcube-widgets</artifactId>
|
2016-06-13 11:02:53 +02:00
|
|
|
<scope>compile</scope>
|
2016-05-27 19:08:03 +02:00
|
|
|
</dependency>
|
2017-04-25 15:41:27 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.grundid.opendatalab</groupId>
|
|
|
|
<artifactId>geojson-jackson</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</dependency>
|
2022-10-27 12:08:36 +02:00
|
|
|
|
|
|
|
<!-- REQUIRED FOR JDK_11 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-05-26 18:12:53 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<!-- Generate compiled stuff in the folder used for developing mode -->
|
2019-12-03 15:39:55 +01:00
|
|
|
<!-- <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory> -->
|
2016-05-26 18:12:53 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<!-- GWT Maven Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
2017-05-18 11:42:49 +02:00
|
|
|
</execution>
|
2016-05-26 18:12:53 +02:00
|
|
|
</executions>
|
|
|
|
<!-- Plugin configuration. There are many available options, see gwt-maven-plugin
|
|
|
|
documentation at codehaus.org -->
|
|
|
|
<configuration>
|
|
|
|
<runTarget>CKanMetadataPublisher.html</runTarget>
|
|
|
|
<modules>
|
|
|
|
<module>org.gcube.portlets.widgets.ckandatapublisherwidget.CKanMetadataPublisher</module>
|
|
|
|
</modules>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<!-- SA Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
2019-12-03 15:54:22 +01:00
|
|
|
<descriptor>descriptor.xml</descriptor>
|
2016-05-26 18:12:53 +02:00
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>servicearchive</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|