2020-02-03 17:25:33 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2019-04-03 12:05:13 +02:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2013-02-08 10:56:27 +01:00
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 >
<artifactId > maven-parent</artifactId>
<groupId > org.gcube.tools</groupId>
2024-02-20 15:26:27 +01:00
<version > 1.2.0</version>
2013-02-08 10:56:27 +01:00
<relativePath />
</parent>
<groupId > org.gcube.portlets.user</groupId>
<artifactId > workspace</artifactId>
<packaging > war</packaging>
2024-04-23 09:47:48 +02:00
<version > 6.30.0</version>
2013-02-08 10:56:27 +01:00
<name > gCube Workspace Portlet</name>
<description >
2020-02-03 17:26:55 +01:00
gCube Workspace Portlet is a web-gui to manage the gCube workspace, a collaborative area where users can exchange and organize information objects (workspace items) according to their specific needs.
2016-03-14 12:55:18 +01:00
Every user of any Virtual Research Environment is provided with this area for the exchange of workspace objects (share) with other users.
Such an area is further organized in workspaces as to resemble a classic folder-based file system.
2013-02-08 10:56:27 +01:00
</description>
2020-05-20 14:38:34 +02:00
2013-02-08 10:56:27 +01:00
<properties >
<!-- Convenience property to set the GWT version -->
2014-11-28 10:29:32 +01:00
<gwtVersion > 2.7.0</gwtVersion>
2013-02-08 10:56:27 +01:00
<!-- GWT needs at least java 1.6 -->
2018-03-02 12:35:44 +01:00
<maven.compiler.source > 1.7</maven.compiler.source>
2017-05-18 17:26:39 +02:00
<maven.compiler.target > 1.8</maven.compiler.target>
2013-02-08 10:56:27 +01:00
<webappDirectory > ${project.build.directory}/${project.build.finalName}</webappDirectory>
2017-05-18 17:26:39 +02:00
<additionalparam > -Xdoclint:none</additionalparam>
2021-05-11 16:00:48 +02:00
<jackson.version > 2.8.11</jackson.version>
2024-02-20 17:50:17 +01:00
<gcube-portal-bom-version > 3.7.0</gcube-portal-bom-version>
2024-02-20 15:26:27 +01:00
<gxt2.2.5-gwt2.X-version > 2.7.0</gxt2.2.5-gwt2.X-version>
2013-02-08 10:56:27 +01:00
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding > UTF-8</project.reporting.outputEncoding>
</properties>
2020-05-20 14:38:34 +02:00
2020-02-03 17:25:33 +01:00
<scm >
<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>
</scm>
2020-05-20 14:38:34 +02:00
2013-09-26 11:21:46 +02:00
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
<artifactId > maven-portal-bom</artifactId>
2024-02-20 15:26:27 +01:00
<version > ${gcube-portal-bom-version}</version>
2013-09-26 11:21:46 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2024-02-26 11:39:48 +01:00
<profiles >
2024-02-28 11:06:29 +01:00
<!-- PROD profile -->
2024-02-28 11:10:21 +01:00
<!-- <profile> -->
2024-02-28 11:06:29 +01:00
<!-- <id>workspace - release - profile</id> -->
<!-- <activation> -->
<!-- <property> -->
<!-- <name>Release</name> -->
<!-- </property> -->
<!-- </activation> -->
<!-- <properties> -->
<!-- <gcube - portal - bom - version>3.7.0</gcube - portal - bom - version> -->
<!-- </properties> -->
2024-02-28 11:10:21 +01:00
<!-- </profile> -->
2024-02-28 11:06:29 +01:00
<!-- DEV profile -->
2024-02-28 11:10:21 +01:00
<!-- <profile> -->
2024-02-28 11:06:29 +01:00
<!-- <id>workspace - snapshot - profile</id> -->
<!-- <activation> -->
<!-- <property> -->
<!-- <name>!Release</name> -->
<!-- </property> -->
<!-- </activation> -->
<!-- <properties> -->
<!-- <gcube - portal - bom - version>3.8.0 - SNAPSHOT</gcube - portal - bom - version> -->
<!-- </properties> -->
2024-02-28 11:10:21 +01:00
<!-- </profile> -->
2024-02-26 11:39:48 +01:00
</profiles>
2024-02-20 17:50:17 +01:00
2013-02-08 10:56:27 +01:00
<dependencies >
2017-05-22 14:19:44 +02:00
<dependency >
<groupId > com.google.gwt</groupId>
<artifactId > gwt-user</artifactId>
<version > ${gwtVersion}</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.google.gwt</groupId>
<artifactId > gwt-dev</artifactId>
<version > ${gwtVersion}</version>
<scope > provided</scope>
</dependency>
2020-05-20 14:38:34 +02:00
2020-02-03 17:53:01 +01:00
<!-- PORTAL MANAGER -->
<dependency >
<groupId > org.gcube.common.portal</groupId>
<artifactId > portal-manager</artifactId>
<scope > compile</scope>
</dependency>
2020-05-20 14:38:34 +02:00
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > xerces</groupId>
<artifactId > xercesImpl</artifactId>
<version > 2.9.1</version>
<scope > provided</scope>
</dependency>
2022-06-27 14:55:39 +02:00
2016-09-21 18:10:02 +02:00
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > authorization-client</artifactId>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > common-authorization</artifactId>
</dependency>
2016-11-24 17:08:36 +01:00
<dependency >
<groupId > org.gcube.portal</groupId>
<artifactId > client-context-library</artifactId>
2020-02-03 17:25:33 +01:00
<version > [1.0.0,2.0.0-SNAPSHOT)</version>
2016-11-24 17:08:36 +01:00
<scope > compile</scope>
</dependency>
2018-06-07 16:57:34 +02:00
2019-09-13 17:06:05 +02:00
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<scope > provided</scope>
</dependency>
2018-03-02 12:35:44 +01:00
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > portal-service</artifactId>
<scope > provided</scope>
</dependency>
2019-04-03 12:05:13 +02:00
2014-07-28 16:21:45 +02:00
<dependency >
<groupId > com.github.gwtbootstrap</groupId>
<artifactId > gwt-bootstrap</artifactId>
</dependency>
2014-11-28 10:29:32 +01:00
2018-01-09 15:16:42 +01:00
<dependency >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-core</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-wrapper</artifactId>
2024-02-26 11:39:48 +01:00
<!-- Resolving conflict (NoSuchMethodError stax2/ri/EmptyIterator) with
version stax2-api:jar:4.1 see https://support.d4science.org/issues/26825#note-5 -->
2024-02-26 10:47:41 +01:00
<exclusions >
<exclusion >
<groupId > org.codehaus.woodstox</groupId>
<artifactId > stax2-api</artifactId>
</exclusion>
</exclusions>
2018-01-09 15:16:42 +01:00
<scope > provided</scope>
</dependency>
2014-11-28 10:29:32 +01:00
2024-02-20 15:26:27 +01:00
<dependency >
<groupId > org.projectlombok</groupId>
<artifactId > lombok</artifactId>
<version > 1.18.4</version>
<scope > provided</scope>
</dependency>
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > com.sencha.gxt</groupId>
2014-12-01 17:47:13 +01:00
<artifactId > gxt2.2.5-gwt2.X</artifactId>
2016-06-24 14:46:23 +02:00
<version > ${gwtVersion}</version>
2014-12-02 11:06:03 +01:00
<scope > compile</scope>
2013-02-08 10:56:27 +01:00
</dependency>
2017-02-03 12:54:52 +01:00
2013-10-04 14:01:38 +02:00
<!-- FWS -->
2013-02-08 10:56:27 +01:00
<dependency >
2013-10-04 14:01:38 +02:00
<groupId > org.gcube.resources.discovery</groupId>
<artifactId > ic-client</artifactId>
2013-02-08 10:56:27 +01:00
<scope > provided</scope>
</dependency>
2024-02-20 15:26:27 +01:00
2013-10-04 14:01:38 +02:00
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-scope-maps</artifactId>
2014-05-23 15:07:50 +02:00
<scope > compile</scope>
2013-10-04 14:01:38 +02:00
</dependency>
<!-- END FWS -->
2021-05-11 16:00:48 +02:00
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-core</artifactId>
<version > ${jackson.version}</version>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
<version > ${jackson.version}</version>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
<version > ${jackson.version}</version>
</dependency>
2014-09-29 18:12:44 +02:00
<dependency >
<groupId > org.gcube.portlets.widgets</groupId>
<artifactId > session-checker</artifactId>
2020-02-03 17:25:33 +01:00
<version > [1.0.0, 2.0.0-SNAPSHOT)</version>
2014-09-29 18:12:44 +02:00
</dependency>
2013-10-04 14:01:38 +02:00
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > org.gcube.portlets.user</groupId>
<artifactId > gcube-widgets</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.portal</groupId>
<artifactId > custom-portal-handler</artifactId>
<scope > provided</scope>
</dependency>
2015-10-05 18:34:15 +02:00
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > org.gcube.portal</groupId>
2024-04-22 16:40:03 +02:00
<artifactId > social-library-stubs</artifactId>
<version > [1.0.0-SNAPSHOT, 2.0.0)</version>
2013-02-08 10:56:27 +01:00
<scope > provided</scope>
</dependency>
2024-04-22 16:40:03 +02:00
<dependency >
<groupId > org.gcube.social-networking</groupId>
<artifactId > social-service-client</artifactId>
<version > [2.0.0-SNAPSHOT, 3.0.0)</version>
<scope > provided</scope>
<exclusions >
<exclusion >
<groupId > org.gcube.portal</groupId>
<artifactId > social-networking-library</artifactId>
</exclusion>
</exclusions>
</dependency>
2013-06-26 14:25:29 +02:00
2016-05-13 12:26:40 +02:00
<dependency >
<groupId > org.gcube.applicationsupportlayer</groupId>
<artifactId > aslsocial</artifactId>
<scope > provided</scope>
</dependency>
2016-05-05 18:25:34 +02:00
<dependency >
<groupId > org.gcube.portlets.user</groupId>
<artifactId > workspace-tree-widget</artifactId>
2021-04-09 15:28:34 +02:00
<version > [6.31.3-SNAPSHOT, 7.0.0-SNAPSHOT)</version>
2016-05-05 18:25:34 +02:00
<scope > compile</scope>
</dependency>
2018-02-06 15:11:22 +01:00
<!-- User Management Core -->
<dependency >
<groupId > org.gcube.dvos</groupId>
<artifactId > usermanagement-core</artifactId>
<scope > provided</scope>
</dependency>
2018-06-07 16:57:34 +02:00
<dependency >
<groupId > org.gcube.portlets.widgets</groupId>
<artifactId > ws-task-executor-widget</artifactId>
2021-01-18 15:13:40 +01:00
<version > [1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
2018-06-07 16:57:34 +02:00
</dependency>
2018-01-24 15:49:08 +01:00
2018-02-06 15:11:22 +01:00
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > javax.portlet</groupId>
<artifactId > portlet-api</artifactId>
<scope > provided</scope>
</dependency>
2013-10-08 14:55:24 +02:00
2017-05-22 11:59:42 +02:00
<dependency >
<groupId > org.gcube.portlets.widgets</groupId>
<artifactId > image-previewer-widget</artifactId>
2020-02-03 17:25:33 +01:00
<version > [1.0.0,2.0.0-SNAPSHOT)</version>
2017-05-22 11:59:42 +02:00
</dependency>
2013-10-08 14:55:24 +02:00
<!-- LOGGER -->
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > org.slf4j</groupId>
2019-09-13 16:54:52 +02:00
<artifactId > slf4j-api</artifactId>
2013-02-08 10:56:27 +01:00
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
2019-09-13 16:54:52 +02:00
<artifactId > slf4j-log4j12</artifactId>
2021-05-25 11:11:33 +02:00
<scope > test</scope>
2013-02-08 10:56:27 +01:00
</dependency>
2013-10-14 10:59:35 +02:00
2020-05-20 14:38:34 +02:00
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
<scope > runtime</scope>
</dependency>
2019-09-13 16:54:52 +02:00
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 4.7</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > javax.validation</groupId>
<artifactId > validation-api</artifactId>
<version > 1.0.0.GA</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > javax.validation</groupId>
<artifactId > validation-api</artifactId>
<version > 1.0.0.GA</version>
<classifier > sources</classifier>
<scope > test</scope>
</dependency>
2018-06-07 16:57:34 +02:00
2013-02-08 10:56:27 +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-24 17:08:16 +02:00
<version > ${gwtVersion}</version>
2013-02-08 10:56:27 +01:00
<executions >
<execution >
<goals >
<goal > compile</goal>
<!-- <goal>test</goal> -->
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see gwt - maven - plugin
documentation at codehaus.org -->
<configuration >
2013-02-08 15:57:17 +01:00
<runTarget > WorkspacePortlet.html</runTarget>
2013-02-08 10:56:27 +01:00
<hostedWebapp > ${webappDirectory}</hostedWebapp>
</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 >
2013-12-20 12:04:00 +01:00
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
2013-02-08 10:56:27 +01:00
</configuration>
</plugin>
<!-- SA Plugin -->
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-assembly-plugin</artifactId>
<version > 2.2</version>
<configuration >
<descriptors >
2020-02-03 17:25:33 +01:00
<descriptor > descriptor.xml</descriptor>
2013-02-08 10:56:27 +01:00
</descriptors>
</configuration>
<executions >
<execution >
<id > servicearchive</id>
<phase > install</phase>
<goals >
<goal > single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-resources-plugin</artifactId>
<version > 2.5</version>
<executions >
<execution >
<id > copy-profile</id>
<phase > install</phase>
<goals >
<goal > copy-resources</goal>
</goals>
<configuration >
<outputDirectory > target</outputDirectory>
<resources >
<resource >
2020-02-03 17:30:38 +01:00
<directory > ${project.basedir}</directory>
2013-02-08 10:56:27 +01:00
<filtering > true</filtering>
<includes >
<include > profile.xml</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-09-21 12:19:06 +02:00
</project>