2013-02-06 23:25:43 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-02-26 19:44:48 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-02-06 23:25:43 +01:00
|
|
|
|
|
|
|
<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>reports</artifactId>
|
|
|
|
<packaging>war</packaging>
|
2014-01-23 19:11:55 +01:00
|
|
|
<version>4.7.2-SNAPSHOT</version>
|
2013-11-26 18:37:13 +01:00
|
|
|
<name>gCube Reports Manager</name>
|
2013-02-06 23:25:43 +01:00
|
|
|
<description>
|
|
|
|
gCube Reports Portlet.
|
|
|
|
</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-10-09 14:21:50 +02:00
|
|
|
<gwtVersion>2.5.1</gwtVersion>
|
2013-02-06 23:25:43 +01:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
2013-02-08 16:05:07 +01:00
|
|
|
<!-- Set Scope to provided when deploying release, compile for offline
|
|
|
|
cersion -->
|
2013-02-08 14:10:20 +01:00
|
|
|
<setScope>provided</setScope>
|
2013-02-08 16:05:07 +01:00
|
|
|
<setClassifier>online</setClassifier>
|
2013-02-06 23:25:43 +01:00
|
|
|
<!-- GWT needs at least java 1.6 -->
|
2014-01-22 11:58:16 +01:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2013-02-06 23:25:43 +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-02-08 14:10:20 +01:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>offline</id>
|
2013-02-08 16:05:07 +01:00
|
|
|
<properties>
|
|
|
|
<setScope>compile</setScope>
|
|
|
|
<setClassifier>offline</setClassifier>
|
|
|
|
</properties>
|
2013-02-08 14:10:20 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslcore-offline</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-02-08 16:05:07 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-08 14:10:20 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2013-10-09 14:21:50 +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 23:25:43 +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>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-10-09 17:19:37 +02:00
|
|
|
</dependency>
|
2013-11-13 18:56:13 +01:00
|
|
|
<dependency>
|
2013-10-09 17:19:37 +02:00
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-scope-maps</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
2013-02-08 16:05:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslcore</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-02-06 23:25:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslsocial</artifactId>
|
2013-11-13 18:56:13 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>gcube-widgets</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>custom-portal-handler</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sencha.gxt</groupId>
|
|
|
|
<artifactId>gxt</artifactId>
|
|
|
|
<version>2.2.5</version>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
2013-11-22 18:28:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.allen-sauer.gwt.log</groupId>
|
|
|
|
<artifactId>gwt-log</artifactId>
|
2013-12-04 23:21:12 +01:00
|
|
|
</dependency>
|
2013-11-13 18:56:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.application</groupId>
|
|
|
|
<artifactId>gcube-reporting-modeler</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.application.rsg</groupId>
|
|
|
|
<artifactId>reports-store-gateway-client</artifactId>
|
2013-12-04 23:21:12 +01:00
|
|
|
<version>[0.0.3-SNAPSHOT, 1.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-12-06 11:35:34 +01:00
|
|
|
<groupId>org.jboss.weld</groupId>
|
|
|
|
<artifactId>weld-core</artifactId>
|
|
|
|
<version>2.0.4.Final</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jboss.spec.javax.el</groupId>
|
|
|
|
<artifactId>jboss-el-api_3.0_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-11-13 18:56:13 +01:00
|
|
|
</dependency>
|
2013-02-06 23:25:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>csv4j</artifactId>
|
2013-03-16 12:27:06 +01:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-03-01 19:42:50 +01:00
|
|
|
</dependency>
|
2013-02-06 23:25:43 +01:00
|
|
|
<dependency>
|
2013-10-09 14:21:50 +02:00
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
2013-02-06 23:25:43 +01:00
|
|
|
<artifactId>workspace-light-tree</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.admin</groupId>
|
|
|
|
<artifactId>document-workflow-library</artifactId>
|
|
|
|
<version>[1.2.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-12-23 13:06:06 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
2013-03-13 17:03:57 +01:00
|
|
|
<dependency>
|
2013-10-09 14:21:50 +02:00
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
2013-03-13 17:03:57 +01:00
|
|
|
<artifactId>report-exporter-widget</artifactId>
|
2013-11-07 19:00:34 +01:00
|
|
|
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>gcube-reporting-library</artifactId>
|
2013-10-30 18:50:22 +01:00
|
|
|
<version>[3.4.0-SNAPSHOT, 4.0.0-SNAPSHOT)</version>
|
2013-12-23 13:06:06 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>workspace-tree-widget</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
2013-02-26 19:44:48 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2013-03-10 16:46:15 +01:00
|
|
|
<artifactId>workspace-application-handler</artifactId>
|
2013-02-26 19:44:48 +01:00
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-03-13 17:03:57 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-26 19:44:48 +01:00
|
|
|
</dependency>
|
2013-02-06 23:25:43 +01:00
|
|
|
<dependency>
|
2013-10-09 14:21:50 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
2013-02-06 23:25:43 +01:00
|
|
|
<artifactId>home-library</artifactId>
|
2013-05-31 18:14:48 +02:00
|
|
|
<scope>provided</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-10-09 14:21:50 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
2013-02-06 23:25:43 +01:00
|
|
|
<artifactId>home-library-jcr</artifactId>
|
2013-05-31 18:14:48 +02:00
|
|
|
<!-- <classifier>${setClassifier}</classifier> -->
|
|
|
|
<scope>provided</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>accesslogger</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<version>10.8.2.2</version>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
2013-03-07 16:03:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<scope>${setScope}</scope>
|
|
|
|
</dependency>
|
2013-02-06 23:25:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>portal-service</artifactId>
|
2013-02-08 14:10:20 +01:00
|
|
|
<scope>${setScope}</scope>
|
2013-02-06 23:25:43 +01:00
|
|
|
</dependency>
|
2013-02-08 16:05:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.portlet</groupId>
|
|
|
|
<artifactId>portlet-api</artifactId>
|
|
|
|
<scope>${setScope}</scope>
|
|
|
|
</dependency>
|
2013-02-06 23:25:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.7</version>
|
|
|
|
<scope>test</scope>
|
2013-10-09 14:21:50 +02:00
|
|
|
</dependency>
|
2013-02-06 23:25:43 +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-10-09 14:41:25 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2013-02-06 23:25:43 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2013-10-09 14:41:25 +02:00
|
|
|
<runTarget>ReportGenerator.html</runTarget>
|
2013-02-06 23:25:43 +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>
|
2014-01-23 19:11:55 +01:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2013-02-06 23:25:43 +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>
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|