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>
|
2014-03-18 11:51:41 +01:00
|
|
|
<version>6.6.3-SNAPSHOT</version>
|
2013-02-08 10:56:27 +01:00
|
|
|
<name>gCube Workspace Portlet</name>
|
|
|
|
<description>
|
|
|
|
gcube Workspace Portlet is a portlet for users workspace management
|
|
|
|
</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 -->
|
2013-09-24 17:08:16 +02:00
|
|
|
<gwtVersion>2.5.1</gwtVersion>
|
2013-02-08 10:56:27 +01:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
|
|
|
<!-- GWT needs at least java 1.6 -->
|
2013-12-20 12:04:00 +01:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2013-02-08 10:56:27 +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 11:21:46 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2013-02-08 10:56:27 +01:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- This dependency is needed and is need on TOP to use GWT UI BInder
|
|
|
|
without old Xerces version of gCore complaining -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sencha.gxt</groupId>
|
|
|
|
<artifactId>gxt</artifactId>
|
|
|
|
<version>2.2.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-03-18 11:51:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>guided-tour-widget</artifactId>
|
2014-03-18 14:56:21 +01:00
|
|
|
<version>[1.4.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>compile</scope>
|
2014-03-18 11:51:41 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>accesslogger</artifactId>
|
|
|
|
<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>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-10-08 12:07:40 +02:00
|
|
|
<!-- UNCOMMENT THIS FOR RELEASE -->
|
|
|
|
<!-- <scope>provided</scope> -->
|
2013-10-04 14:01:38 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- END FWS -->
|
|
|
|
|
|
|
|
|
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>
|
2013-10-10 14:19:28 +02:00
|
|
|
<!-- WSLT dependencies -->
|
2013-10-14 10:59:35 +02:00
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>org.gcube.portlets.widgets</groupId> -->
|
|
|
|
<!-- <artifactId>workspace-light-tree</artifactId> -->
|
|
|
|
<!-- <scope>provided</scope> -->
|
|
|
|
<!-- </dependency> -->
|
2013-02-08 10:56:27 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslcore</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>social-networking-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-06-26 14:25:29 +02:00
|
|
|
|
2013-07-02 15:00:14 +02:00
|
|
|
<!-- HOME LIBRARY -->
|
2013-02-08 10:56:27 +01:00
|
|
|
<dependency>
|
2013-09-30 15:56:29 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>home-library-jcr</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-02-08 10:56:27 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-09-30 15:56:29 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>home-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-02-08 10:56:27 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-09-24 17:08:16 +02:00
|
|
|
|
2013-02-08 10:56:27 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>portal-service</artifactId>
|
|
|
|
<version>6.0.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.portlet</groupId>
|
|
|
|
<artifactId>portlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</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-09-26 11:21:46 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>workspace-tree-widget</artifactId>
|
|
|
|
<version>[6.0.0-SNAPSHOT, 7.0.0-SNAPSHOT)</version>
|
2014-01-23 17:20:44 +01:00
|
|
|
<scope>compile</scope>
|
2013-09-26 11:21:46 +02:00
|
|
|
</dependency>
|
2013-10-08 14:55:24 +02:00
|
|
|
|
2013-10-14 11:01:18 +02:00
|
|
|
<!-- WSLT dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>workspace-light-tree</artifactId>
|
2014-01-23 17:20:44 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-03-18 11:51:41 +01:00
|
|
|
|
2014-01-23 17:20:44 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>fileupload-progress-bar</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>compile</scope>
|
2013-10-14 11:01:18 +02:00
|
|
|
</dependency>
|
|
|
|
|
2013-09-26 11:21:46 +02:00
|
|
|
<dependency>
|
2013-10-08 12:07:40 +02:00
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
2013-09-26 11:21:46 +02:00
|
|
|
<artifactId>wsmail-widget</artifactId>
|
|
|
|
<version>[1.1.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2014-01-23 17:20:44 +01:00
|
|
|
<scope>compile</scope>
|
2013-09-26 11:21:46 +02:00
|
|
|
</dependency>
|
2013-09-30 15:56:29 +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>
|
2013-02-27 19:17:50 +01: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>
|