2013-02-06 15:40:17 +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-tree-widget</artifactId>
|
2015-11-03 16:37:59 +01:00
|
|
|
<version>6.10.0-SNAPSHOT</version>
|
2013-02-06 15:40:17 +01:00
|
|
|
<name>gCube Workspace Tree Widget</name>
|
|
|
|
<description>
|
|
|
|
gCube Workspace Tree Widget.
|
|
|
|
</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 18:23:05 +01:00
|
|
|
<gwtVersion>2.7.0</gwtVersion>
|
2013-02-06 15:40:17 +01:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
|
|
|
<!-- GWT needs at least java 1.6 -->
|
2013-12-16 18:33:36 +01:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2013-02-06 15:40:17 +01:00
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
2013-09-24 15:51:02 +02:00
|
|
|
|
2013-09-26 11:17:41 +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-06 15:40:17 +01:00
|
|
|
<dependencies>
|
2015-10-05 18:33:14 +02:00
|
|
|
|
|
|
|
<!-- UNCOMMENT THIS TO RUN IN DEVO MODE -->
|
2015-10-06 11:36:55 +02:00
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>xerces</groupId> -->
|
|
|
|
<!-- <artifactId>xerces</artifactId> -->
|
|
|
|
<!-- <version>2.4.0</version> -->
|
|
|
|
<!-- </dependency> -->
|
2015-10-05 18:33:14 +02:00
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
<!-- This dependency is needed 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>
|
2015-10-05 18:33:14 +02:00
|
|
|
|
2015-11-03 16:37:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.web.bindery</groupId>
|
|
|
|
<artifactId>requestfactory-server</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
<!-- Google Web Toolkit (GWT) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2014-11-28 18:23:05 +01:00
|
|
|
<version>${gwtVersion}</version>
|
2015-02-16 14:46:38 +01:00
|
|
|
<scope>compile</scope>
|
2013-02-13 18:44:04 +01:00
|
|
|
</dependency>
|
2014-07-09 11:19:32 +02:00
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sencha.gxt</groupId>
|
2014-12-01 17:46:30 +01:00
|
|
|
<artifactId>gxt2.2.5-gwt2.X</artifactId>
|
|
|
|
<version>2.7.0</version>
|
2014-12-01 17:59:45 +01:00
|
|
|
<scope>compile</scope>
|
2015-05-20 18:39:49 +02:00
|
|
|
<!-- <scope>system</scope> -->
|
|
|
|
<!-- <systemPath>/home/francesco-mangiacrapa/wseclipse/gxt2.2.5-gwt2.X/target/gxt2.2.5-gwt2.X.jar</systemPath> -->
|
2013-02-06 15:40:17 +01:00
|
|
|
</dependency>
|
2013-09-26 11:17:41 +02:00
|
|
|
|
2013-10-04 13:58:07 +02:00
|
|
|
<!-- PORTAL MANAGER -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common.portal</groupId>
|
|
|
|
<artifactId>portal-manager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- FWS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.resources.discovery</groupId>
|
|
|
|
<artifactId>ic-client</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-09-27 17:39:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
2013-10-04 13:58:07 +02:00
|
|
|
<artifactId>common-scope-maps</artifactId>
|
2014-05-23 15:05:44 +02:00
|
|
|
<scope>compile</scope>
|
2013-09-27 17:39:28 +02:00
|
|
|
</dependency>
|
2013-10-04 13:58:07 +02:00
|
|
|
<!-- END FWS -->
|
2013-09-27 17:39:28 +02:00
|
|
|
|
2013-09-26 11:17:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
2013-10-04 13:58:07 +02:00
|
|
|
<artifactId>common-encryption</artifactId>
|
2013-09-26 11:17:41 +02:00
|
|
|
</dependency>
|
2013-10-02 15:39:39 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.dvos</groupId>
|
|
|
|
<artifactId>usermanagement-core</artifactId>
|
2015-07-16 11:19:52 +02:00
|
|
|
<scope>provided</scope>
|
2013-10-02 15:39:39 +02:00
|
|
|
</dependency>
|
2013-10-02 17:16:10 +02:00
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>custom-portal-handler</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>gcube-widgets</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslcore</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-02-24 16:14:31 +01:00
|
|
|
|
2014-03-05 18:28:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>accesslogger</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2014-07-09 11:19:32 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
|
|
|
<artifactId>workspace-sharing-widget</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2014-02-11 12:53:10 +01:00
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>org.apache.directory.studio</groupId> -->
|
|
|
|
<!-- <artifactId>org.apache.commons.io</artifactId> -->
|
|
|
|
<!-- <version>2.1</version> -->
|
|
|
|
<!-- </dependency> -->
|
|
|
|
|
2014-03-05 18:28:49 +01:00
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>commons-io</groupId> -->
|
|
|
|
<!-- <artifactId>commons-io</artifactId> -->
|
|
|
|
<!-- <version>2.4</version> -->
|
|
|
|
<!-- </dependency> -->
|
2013-09-26 11:17:41 +02:00
|
|
|
|
2013-07-02 14:59:25 +02:00
|
|
|
<!-- HOME LIBRARY -->
|
2015-06-10 15:07:13 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>home-library-model</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-02-06 15:40:17 +01:00
|
|
|
<dependency>
|
2013-09-27 17:39:28 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>home-library-jcr</artifactId>
|
2015-05-20 18:39:49 +02:00
|
|
|
<!-- <version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version> -->
|
|
|
|
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
2013-02-11 10:38:16 +01:00
|
|
|
<scope>provided</scope>
|
2013-02-06 15:40:17 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-09-27 17:39:28 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>home-library</artifactId>
|
2015-05-20 18:39:49 +02:00
|
|
|
<!-- <version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version> -->
|
|
|
|
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
2013-07-02 14:59:25 +02:00
|
|
|
<scope>provided</scope>
|
2014-12-02 11:05:53 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>asm-all</artifactId>
|
|
|
|
<groupId>asm</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-07-02 14:59:25 +02:00
|
|
|
</dependency>
|
|
|
|
|
2014-10-23 14:57:57 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2015-05-20 18:39:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
<version>1.4.5</version>
|
|
|
|
</dependency>
|
2014-01-21 14:55:19 +01:00
|
|
|
<!-- FILE UPLOAD-progress-bar -->
|
2015-10-05 18:33:14 +02:00
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>org.gcube.portlets.widgets</groupId> -->
|
|
|
|
<!-- <artifactId>fileupload-progress-bar</artifactId> -->
|
|
|
|
<!-- <version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version> -->
|
|
|
|
<!-- </dependency> -->
|
|
|
|
|
|
|
|
|
2014-01-21 14:55:19 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
2015-10-05 18:33:14 +02:00
|
|
|
<artifactId>workspace-uploader</artifactId>
|
2014-01-21 14:55:19 +01:00
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2015-10-05 18:33:14 +02:00
|
|
|
<scope>compile</scope>
|
2014-01-21 14:55:19 +01:00
|
|
|
</dependency>
|
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
2013-02-14 16:35:06 +01:00
|
|
|
<scope>provided</scope>
|
2013-02-06 15:40:17 +01:00
|
|
|
</dependency>
|
2013-10-02 15:39:39 +02:00
|
|
|
|
2013-10-08 14:55:13 +02:00
|
|
|
<!-- LOGGER -->
|
2013-02-06 15:40:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2013-02-12 11:19:20 +01:00
|
|
|
<scope>runtime</scope>
|
2013-02-06 15:40:17 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2013-02-12 11:19:20 +01:00
|
|
|
<scope>runtime</scope>
|
2013-02-06 15:40:17 +01:00
|
|
|
</dependency>
|
2014-01-21 14:55:19 +01:00
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>portal-service</artifactId>
|
|
|
|
<version>6.0.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-02-13 18:44:04 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>social-networking-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
2013-02-14 16:23:54 +01:00
|
|
|
<scope>provided</scope>
|
2013-02-13 18:44:04 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslsocial</artifactId>
|
2013-02-14 16:23:54 +01:00
|
|
|
<scope>provided</scope>
|
2013-02-13 18:44:04 +01:00
|
|
|
</dependency>
|
2013-02-27 19:17:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2013-03-07 12:40:47 +01:00
|
|
|
<artifactId>workspace-application-handler</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-02-27 19:17:22 +01:00
|
|
|
</dependency>
|
2013-07-02 14:59:25 +02:00
|
|
|
|
|
|
|
<!-- JSON PARSER -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20090211</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- URI RESOLVER -->
|
|
|
|
<!-- <dependency> -->
|
|
|
|
<!-- <groupId>org.gcube.data.transfer</groupId> -->
|
|
|
|
<!-- <artifactId>uri-resolver</artifactId> -->
|
|
|
|
<!-- <version>1.0.0-SNAPSHOT</version> -->
|
|
|
|
<!-- <type>war</type> -->
|
|
|
|
<!-- </dependency> -->
|
|
|
|
|
2013-02-06 15:40:17 +01:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2013-12-16 18:33:36 +01:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2013-02-06 15:40:17 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.12</version>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${distroDirectory}/descriptor.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>fully.qualified.MainClass</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>servicearchive</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-02-14 16:23:54 +01:00
|
|
|
<!-- GWT Maven Plugin - not needed -->
|
2013-02-18 12:40:03 +01:00
|
|
|
<!-- GWT Maven Plugin -->
|
2013-02-15 15:27:29 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
2013-09-24 15:51:02 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2013-02-15 15:27:29 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
2014-11-28 18:23:05 +01:00
|
|
|
<!-- <goal>compile</goal> -->
|
2013-02-15 15:27:29 +01:00
|
|
|
<!-- <goal>test</goal> -->
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-02-06 15:40:17 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|