2013-02-08 10:56:27 +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 >
<artifactId > maven-parent</artifactId>
<groupId > org.gcube.tools</groupId>
<version > 1.0.0</version>
<relativePath />
</parent>
<groupId > org.gcube.portlets.user</groupId>
<artifactId > workspace</artifactId>
<packaging > war</packaging>
2018-07-02 14:59:30 +02:00
<version > 6.19.1-SNAPSHOT</version>
2013-02-08 10:56:27 +01:00
<name > gCube Workspace Portlet</name>
<description >
2016-03-14 12:55:18 +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.
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>
<scm >
<connection > scm:svn:http://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</connection>
<developerConnection > scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</developerConnection>
<url > http://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</url>
</scm>
<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
<distroDirectory > distro</distroDirectory>
<!-- 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>
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>
2013-09-26 11:21:46 +02:00
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
<artifactId > maven-portal-bom</artifactId>
2016-06-24 14:46:23 +02:00
<version > LATEST</version>
2013-09-26 11:21:46 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2013-02-08 10:56:27 +01:00
<dependencies >
2015-10-05 18:34:15 +02:00
<!-- UNCOMMENT THIS TO RUN IN DEVO MODE -->
2018-01-24 15:49:08 +01:00
<!-- <dependency> -->
<!-- <groupId>xerces</groupId> -->
<!-- <artifactId>xerces</artifactId> -->
<!-- <version>2.4.0</version> -->
<!-- </dependency> -->
2016-05-05 18:25:34 +02:00
2013-02-08 10:56:27 +01:00
<!-- This dependency is needed and is need on TOP to use GWT UI BInder
without old Xerces version of gCore complaining -->
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>
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > xerces</groupId>
<artifactId > xercesImpl</artifactId>
<version > 2.9.1</version>
<scope > provided</scope>
</dependency>
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>
<version > [1.0.0-SNAPSHOT,)</version>
<scope > compile</scope>
</dependency>
2018-06-07 16:57:34 +02:00
2018-03-02 12:35:44 +01:00
<!-- PORTAL MANAGER -->
2016-09-21 18:10:02 +02:00
<dependency >
<groupId > org.gcube.common.portal</groupId>
<artifactId > portal-manager</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>
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>
<scope > provided</scope>
</dependency>
2014-11-28 10:29:32 +01:00
2017-02-03 12:54:52 +01:00
<dependency >
<groupId > org.gcube.portlets.widgets</groupId>
<artifactId > workspace-uploader</artifactId>
2018-07-02 14:59:30 +02:00
<version > [1.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
<scope > compile</scope>
2017-02-03 12:54:52 +01:00
</dependency>
2018-07-02 14:59:30 +02:00
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
2016-09-21 18:10:02 +02:00
<!-- WebSocket dep (does not work on Jetty) -->
<dependency >
<groupId > org.realityforge.gwt.websockets</groupId>
<artifactId > gwt-websockets</artifactId>
<version > 1.1.2</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > javax.websocket</groupId>
<artifactId > javax.websocket-api</artifactId>
<version > 1.1</version>
<scope > provided</scope>
</dependency>
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>
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 -->
2014-09-29 18:12:44 +02:00
<dependency >
<groupId > org.gcube.portlets.widgets</groupId>
<artifactId > session-checker</artifactId>
2016-10-07 11:46:47 +02:00
<version > [1.0.0-SNAPSHOT, 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>
<artifactId > social-networking-library</artifactId>
<scope > provided</scope>
</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>
2018-03-02 15:30:20 +01:00
<version > [6.0.0-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>
<version > [0.0.1-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
</dependency>
2018-01-24 15:49:08 +01:00
<!-- Force jackson - annotation dependency to 2.7 version -->
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
<version > 2.7.0</version>
</dependency>
2018-02-06 15:11:22 +01:00
2013-07-02 15:00:14 +02:00
<!-- HOME LIBRARY -->
2015-06-10 15:07:07 +02:00
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > home-library-model</artifactId>
<scope > provided</scope>
</dependency>
2013-02-08 10:56:27 +01:00
<dependency >
2013-09-30 15:56:29 +02:00
<groupId > org.gcube.common</groupId>
2016-09-14 12:20:44 +02:00
<artifactId > home-library-jcr</artifactId>
2013-02-08 10:56:27 +01:00
<scope > provided</scope>
2016-03-14 12:55:18 +01:00
<exclusions >
<exclusion >
2016-09-14 12:20:44 +02:00
<artifactId > asm-debug-all</artifactId>
<groupId > org.ow2.asm</groupId>
2016-03-14 12:55:18 +01:00
</exclusion>
</exclusions>
2013-02-08 10:56:27 +01:00
</dependency>
<dependency >
2013-09-30 15:56:29 +02:00
<groupId > org.gcube.common</groupId>
2016-09-14 12:20:44 +02:00
<artifactId > home-library</artifactId>
2013-02-08 10:56:27 +01:00
<scope > provided</scope>
2016-09-14 12:20:44 +02:00
<exclusions >
<exclusion >
<artifactId > asm-all</artifactId>
<groupId > asm</groupId>
</exclusion>
</exclusions>
2013-02-08 10:56:27 +01:00
</dependency>
2016-09-21 18:10:02 +02: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>
<version > [1.0.0-SNAPSHOT,)</version>
</dependency>
2013-10-08 14:55:24 +02:00
<!-- LOGGER -->
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
</dependency>
2013-02-08 10:56:27 +01:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
2013-02-12 11:20:03 +01:00
<scope > runtime</scope>
2013-02-08 10:56:27 +01:00
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
<scope > runtime</scope>
</dependency>
2013-10-14 10:59:35 +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>
<version > 2.1.1</version>
<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>
<version > 2.3.2</version>
<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 >
<descriptor > ${distroDirectory}/descriptor.xml</descriptor>
</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 >
<directory > ${distroDirectory}</directory>
<filtering > true</filtering>
<includes >
<include > profile.xml</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
2013-09-26 11:21:46 +02:00
</project>