2013-01-26 20:02:51 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-04-28 09:39:59 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-01-26 20:02:51 +01: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>
|
2024-09-26 15:05:38 +02:00
|
|
|
<version>1.2.0</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>share-updates</artifactId>
|
|
|
|
<packaging>war</packaging>
|
2024-10-25 18:32:20 +02:00
|
|
|
<version>3.0.0</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<name>gCube Share Updates Portlet</name>
|
|
|
|
<description>
|
|
|
|
gCube Share Updates for exchanging updates with other users of VREs.
|
|
|
|
</description>
|
|
|
|
<scm>
|
2021-03-25 11:30:17 +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>
|
2013-01-26 20:02:51 +01:00
|
|
|
</scm>
|
|
|
|
<properties>
|
|
|
|
<!-- Convenience property to set the GWT version -->
|
2015-04-17 17:38:27 +02:00
|
|
|
<gwtVersion>2.7.0</gwtVersion>
|
2013-01-26 20:02:51 +01:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
2016-04-27 14:35:28 +02:00
|
|
|
<liferay.version>6.2.5</liferay.version>
|
2014-01-14 19:02:43 +01:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
2017-05-03 16:57:38 +02:00
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2013-01-26 20:02:51 +01:00
|
|
|
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
2013-09-26 15:44:21 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
2024-10-25 18:32:20 +02:00
|
|
|
<version>4.0.0</version>
|
2013-09-26 15:44:21 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2015-04-17 17:38:27 +02:00
|
|
|
<dependencies>
|
2013-01-26 20:02:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2015-04-17 17:38:27 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
2015-04-17 17:38:27 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<scope>provided</scope>
|
2016-02-25 19:00:58 +01:00
|
|
|
</dependency>
|
2016-04-27 14:35:28 +02:00
|
|
|
<dependency>
|
2016-02-25 19:00:58 +01:00
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-dev</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<scope>provided</scope>
|
2013-04-16 23:49:16 +02:00
|
|
|
</dependency>
|
2015-04-27 16:52:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.gwtbootstrap</groupId>
|
|
|
|
<artifactId>gwt-bootstrap</artifactId>
|
|
|
|
</dependency>
|
2014-05-09 17:05:42 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common.portal</groupId>
|
|
|
|
<artifactId>portal-manager</artifactId>
|
2016-11-14 18:03:55 +01:00
|
|
|
<scope>provided</scope>
|
2014-05-09 17:05:42 +02:00
|
|
|
</dependency>
|
2021-03-25 12:19:27 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>storagehub-client-library</artifactId>
|
|
|
|
</dependency>
|
2013-01-26 20:02:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
2024-09-26 15:05:38 +02:00
|
|
|
<artifactId>social-library-stubs</artifactId>
|
2013-01-26 20:02:51 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-12-21 18:33:23 +01:00
|
|
|
<dependency>
|
2024-09-26 15:05:38 +02:00
|
|
|
<groupId>org.gcube.social-networking</groupId>
|
|
|
|
<artifactId>social-service-client</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>social-networking-library</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.social-networking</groupId>
|
|
|
|
<artifactId>social-service-model</artifactId>
|
2016-04-27 14:35:28 +02:00
|
|
|
<scope>provided</scope>
|
2015-12-21 18:33:23 +01:00
|
|
|
</dependency>
|
2013-01-26 20:02:51 +01:00
|
|
|
<dependency>
|
2013-10-03 12:16:57 +02:00
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslsocial</artifactId>
|
|
|
|
<scope>provided</scope>
|
2013-01-26 20:02:51 +01:00
|
|
|
</dependency>
|
2024-09-26 15:05:38 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>notifications-common-library</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-01-26 20:02:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>gcube-widgets</artifactId>
|
2014-12-12 11:29:35 +01:00
|
|
|
<scope>compile</scope>
|
2013-01-26 20:02:51 +01:00
|
|
|
</dependency>
|
2018-02-11 10:12:25 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>switch-button-widget</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2018-02-11 10:37:37 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gwtx</groupId>
|
|
|
|
<artifactId>gwtx</artifactId>
|
|
|
|
<version>1.5.3</version>
|
2018-02-11 10:12:25 +01:00
|
|
|
</dependency>
|
2014-10-02 19:47:15 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-scope-maps</artifactId>
|
2017-04-13 17:08:32 +02:00
|
|
|
<scope>compile</scope>
|
2014-10-02 19:47:15 +02:00
|
|
|
</dependency>
|
2013-04-16 23:49:16 +02:00
|
|
|
<dependency>
|
2013-10-07 23:10:21 +02:00
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
2014-10-02 19:47:15 +02:00
|
|
|
<artifactId>pickitem-widget</artifactId>
|
2018-06-28 17:20:58 +02:00
|
|
|
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
2013-04-16 23:49:16 +02:00
|
|
|
</dependency>
|
2016-05-25 15:05:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.socialnetworking</groupId>
|
|
|
|
<artifactId>social-util-library</artifactId>
|
2016-05-26 12:20:53 +02:00
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2016-05-26 12:50:00 +02:00
|
|
|
<scope>compile</scope>
|
2016-05-25 15:05:07 +02:00
|
|
|
</dependency>
|
2014-01-17 19:21:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>fileupload-progress-bar</artifactId>
|
2017-12-07 15:30:51 +01:00
|
|
|
<version>[1.5.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2014-01-17 19:21:35 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-02-13 16:35:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.contentmanagement</groupId>
|
|
|
|
<artifactId>storage-manager-core</artifactId>
|
2014-03-22 17:32:46 +01:00
|
|
|
<scope>provided</scope>
|
2014-02-13 16:35:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.contentmanagement</groupId>
|
|
|
|
<artifactId>storage-manager-wrapper</artifactId>
|
2014-03-22 17:32:46 +01:00
|
|
|
<scope>provided</scope>
|
2014-02-13 16:35:43 +01:00
|
|
|
</dependency>
|
2014-01-20 19:35:57 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.swinglabs</groupId>
|
|
|
|
<artifactId>pdf-renderer</artifactId>
|
|
|
|
<version>1.0.5</version>
|
|
|
|
</dependency>
|
2014-01-21 18:43:03 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
|
<artifactId>pdfbox</artifactId>
|
|
|
|
<version>1.8.3</version>
|
|
|
|
</dependency>
|
2014-01-27 19:08:15 +01:00
|
|
|
<dependency>
|
2014-01-28 19:32:14 +01:00
|
|
|
<groupId>org.apache.tika</groupId>
|
|
|
|
<artifactId>tika-core</artifactId>
|
2022-06-15 14:53:34 +02:00
|
|
|
<version>1.27</version>
|
2014-01-28 19:32:14 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-01-30 16:39:42 +01:00
|
|
|
<groupId>net.coobird</groupId>
|
|
|
|
<artifactId>thumbnailator</artifactId>
|
|
|
|
<version>[0.4, 0.5)</version>
|
2014-01-27 19:08:15 +01:00
|
|
|
</dependency>
|
2014-01-17 19:21:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2013-04-16 23:49:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.dvos</groupId>
|
|
|
|
<artifactId>usermanagement-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-01-26 20:02:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google</groupId>
|
|
|
|
<artifactId>gwt-jsonmaker</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.htmlcleaner</groupId>
|
|
|
|
<artifactId>htmlcleaner</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
2020-04-28 09:39:59 +02:00
|
|
|
|
2013-02-06 22:34:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
<artifactId>commons-validator</artifactId>
|
2014-06-21 15:37:17 +02:00
|
|
|
<version>1.4.0</version>
|
|
|
|
<scope>compile</scope>
|
2013-02-06 22:34:01 +01:00
|
|
|
</dependency>
|
2013-01-26 20:02:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>portal-service</artifactId>
|
2016-04-27 14:35:28 +02:00
|
|
|
<version>${liferay.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>util-bridges</artifactId>
|
|
|
|
<version>${liferay.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>util-taglib</artifactId>
|
|
|
|
<version>${liferay.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>util-java</artifactId>
|
|
|
|
<version>${liferay.version}</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.portlet</groupId>
|
|
|
|
<artifactId>portlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-02-06 22:34:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2016-11-18 13:03:13 +01:00
|
|
|
<scope>provided</scope>
|
2013-02-06 22:34:01 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2016-11-18 13:03:13 +01:00
|
|
|
<scope>provided</scope>
|
2014-01-14 19:02:43 +01:00
|
|
|
</dependency>
|
2013-01-26 20:02:51 +01:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<!-- Generate compiled stuff in the folder used for developing mode -->
|
|
|
|
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
|
|
|
|
<plugins>
|
|
|
|
<!-- GWT Maven Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
2013-09-26 15:44:21 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<!-- <goal>test</goal> -->
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2014-03-22 19:03:30 +01:00
|
|
|
<runTarget>ShareUpdates.html</runTarget>
|
2013-01-26 20:02:51 +01:00
|
|
|
<hostedWebapp>${webappDirectory}</hostedWebapp>
|
2019-03-29 12:44:15 +01:00
|
|
|
<extraJvmArgs>-Dlogback.configurationFile=portal-logback.xml</extraJvmArgs>
|
2013-01-26 20:02:51 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Copy static web files before executing gwt:run -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exploded</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<webappDirectory>${webappDirectory}</webappDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2017-05-03 16:57:38 +02:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2013-01-26 20:02:51 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-04-28 09:39:59 +02:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2013-01-26 20:02:51 +01:00
|
|
|
<configuration>
|
2020-04-28 09:39:59 +02:00
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
2013-01-26 20:02:51 +01:00
|
|
|
</configuration>
|
2020-04-28 09:39:59 +02:00
|
|
|
<version>3.1.0</version>
|
2013-01-26 20:02:51 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2020-04-28 09:39:59 +02:00
|
|
|
<id>generate-doc</id>
|
2013-01-26 20:02:51 +01:00
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
2020-04-28 09:39:59 +02:00
|
|
|
<goal>jar</goal>
|
2013-01-26 20:02:51 +01:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|