2013-03-15 17:32:47 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<!-- POM file generated with GWT webAppCreator -->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-portlet</artifactId>
|
2013-11-26 12:50:46 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2013-10-09 12:29:15 +02:00
|
|
|
<packaging>war</packaging>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
2013-10-24 12:09:13 +02:00
|
|
|
<name>tabular-data-portlet</name>
|
|
|
|
<description>tabular-data-portlet manages tabular data</description>
|
2013-10-18 19:23:42 +02:00
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet</url>
|
|
|
|
</scm>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
|
|
|
|
2013-10-18 19:23:42 +02:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Giancarlo Panichi</name>
|
|
|
|
<email>g.panichi@isti.cnr.it</email>
|
|
|
|
<organization>CNR Pisa, Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo"</organization>
|
|
|
|
<roles>
|
|
|
|
<role>architect</role>
|
|
|
|
<role>developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
|
|
|
|
2013-03-15 17:32:47 +01:00
|
|
|
<properties>
|
2013-07-08 14:58:56 +02:00
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
2013-03-15 17:32:47 +01:00
|
|
|
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
2013-10-28 11:07:51 +01:00
|
|
|
<release.date>2013-10-18</release.date>
|
|
|
|
<templatesDirectory>templates</templatesDirectory>
|
|
|
|
<distroDirectory>distro</distroDirectory>
|
|
|
|
<configDirectory>config</configDirectory>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
2013-07-08 14:58:56 +02:00
|
|
|
<!-- Convenience property to set the GWT version -->
|
2013-10-01 19:02:16 +02:00
|
|
|
<gwtVersion>2.5.1</gwtVersion>
|
2013-10-09 18:22:38 +02:00
|
|
|
|
2013-07-08 14:58:56 +02:00
|
|
|
<!-- To make this work on gwt-run you need to set up global env vars. on
|
|
|
|
MacOSX edit this file /etc/launchd.conf and put "setenv GLOBUS_LOCATION /Users/massi/portal/Portal-Bundle/gCore"
|
|
|
|
on Linux? -->
|
|
|
|
<GLOBUS_LOCATION>${env.GLOBUS_LOCATION}</GLOBUS_LOCATION>
|
2013-10-09 18:22:38 +02:00
|
|
|
|
2013-03-15 17:32:47 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2013-09-16 11:43:07 +02:00
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2013-03-15 17:32:47 +01:00
|
|
|
</properties>
|
|
|
|
|
2013-10-09 18:22:38 +02:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>localRun</id>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2013-03-15 17:32:47 +01:00
|
|
|
<dependencies>
|
|
|
|
<!-- GWT -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
|
|
|
</dependency>
|
2013-10-09 18:22:38 +02:00
|
|
|
|
2013-03-15 17:32:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2013-12-16 19:09:51 +01:00
|
|
|
|
|
|
|
|
2013-12-13 17:46:32 +01:00
|
|
|
|
2013-12-16 14:57:53 +01:00
|
|
|
<!-- GXT 3 -->
|
2013-03-15 17:32:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sencha.gxt</groupId>
|
|
|
|
<artifactId>gxt</artifactId>
|
2013-09-16 11:43:07 +02:00
|
|
|
<version>3.0.1</version>
|
2013-03-15 17:32:47 +01:00
|
|
|
</dependency>
|
|
|
|
|
2013-12-13 17:46:32 +01:00
|
|
|
|
|
|
|
|
2013-07-08 15:16:58 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslsocial</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2013-03-15 17:32:47 +01:00
|
|
|
<!-- PORTAL -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.portlet</groupId>
|
|
|
|
<artifactId>portlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>custom-portal-handler</artifactId>
|
|
|
|
</dependency>
|
2013-05-29 12:07:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.applicationsupportlayer</groupId>
|
|
|
|
<artifactId>aslcore</artifactId>
|
|
|
|
</dependency>
|
2013-10-09 12:29:15 +02:00
|
|
|
|
2013-10-02 19:36:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>gcube-widgets</artifactId>
|
|
|
|
</dependency>
|
2013-05-29 12:07:03 +02:00
|
|
|
|
2013-10-09 12:29:15 +02:00
|
|
|
<!-- WSLT dependencies -->
|
2013-09-16 11:43:07 +02:00
|
|
|
<dependency>
|
2013-10-10 13:04:14 +02:00
|
|
|
<groupId>org.gcube.portlets.widgets</groupId>
|
2013-09-16 11:43:07 +02:00
|
|
|
<artifactId>workspace-light-tree</artifactId>
|
|
|
|
</dependency>
|
2013-11-18 16:08:28 +01:00
|
|
|
|
2013-11-11 20:42:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>home-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-10-14 16:08:17 +02:00
|
|
|
|
2013-11-18 16:08:28 +01:00
|
|
|
|
2013-10-30 15:33:41 +01:00
|
|
|
<!-- TD Source -->
|
2013-09-16 20:48:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2013-12-13 18:02:10 +01:00
|
|
|
<artifactId>tabular-data-widgetx-tdx-source</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2013-09-16 20:48:44 +02:00
|
|
|
</dependency>
|
2013-05-22 17:48:27 +02:00
|
|
|
|
2013-10-30 15:33:41 +01:00
|
|
|
|
|
|
|
|
2013-10-22 19:30:23 +02:00
|
|
|
<!-- Apache Common Library -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.juniversalchardet</groupId>
|
|
|
|
<artifactId>juniversalchardet</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- csv4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>csv4j</artifactId>
|
|
|
|
<version>[1.2.0-SNAPSHOT, 2.0.0-common)</version>
|
2013-10-30 15:33:41 +01:00
|
|
|
</dependency>
|
2013-12-11 14:28:10 +01:00
|
|
|
|
2013-11-26 13:57:08 +01:00
|
|
|
<!-- tabular-data-widget-common-event -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-widget-common-event</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2013-12-11 14:28:10 +01:00
|
|
|
|
2013-10-24 12:09:13 +02:00
|
|
|
<!-- tabular-data-csv-import-widget -->
|
2013-10-18 19:23:42 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2013-10-24 12:09:13 +02:00
|
|
|
<artifactId>tabular-data-csv-import-widget</artifactId>
|
2013-11-26 12:46:19 +01:00
|
|
|
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
2013-10-18 19:23:42 +02:00
|
|
|
</dependency>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
2013-10-24 12:09:13 +02:00
|
|
|
<!-- tabular-data-sdmx-import-widget -->
|
2013-05-22 17:48:27 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2013-10-24 12:09:13 +02:00
|
|
|
<artifactId>tabular-data-sdmx-import-widget</artifactId>
|
2013-11-26 12:46:19 +01:00
|
|
|
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
2013-07-03 15:41:02 +02:00
|
|
|
</dependency>
|
2013-09-27 17:35:58 +02:00
|
|
|
|
2013-10-24 12:09:13 +02:00
|
|
|
<!-- tabular-data-open-widget -->
|
2013-07-03 15:41:02 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2013-10-24 12:09:13 +02:00
|
|
|
<artifactId>tabular-data-open-widget</artifactId>
|
2013-11-26 12:46:19 +01:00
|
|
|
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
2013-09-16 11:43:07 +02:00
|
|
|
</dependency>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
2013-11-21 17:14:41 +01:00
|
|
|
<!-- tabular-data-csv-export-widget -->
|
2013-11-18 16:08:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-csv-export-widget</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
2013-12-11 14:28:10 +01:00
|
|
|
|
2013-12-04 14:32:36 +01:00
|
|
|
<!-- tabular-data-sdmx-export-widget -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-sdmx-export-widget</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
2013-11-18 16:08:28 +01:00
|
|
|
|
2013-12-11 14:28:10 +01:00
|
|
|
|
2013-10-30 15:33:41 +01:00
|
|
|
|
2013-10-24 12:09:13 +02:00
|
|
|
<!-- tabular-data-gwt-service -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-gwt-service</artifactId>
|
2013-11-26 12:46:19 +01:00
|
|
|
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
2013-09-27 17:35:58 +02:00
|
|
|
</dependency>
|
2013-11-18 16:08:28 +01:00
|
|
|
|
|
|
|
<!-- tabular-data-wizard-widget -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-wizard-widget</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
|
|
|
|
2013-12-11 14:28:10 +01:00
|
|
|
<!-- tabular-data-toolbox-widget -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-toolbox-widget</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2013-12-16 19:36:41 +01:00
|
|
|
|
|
|
|
<!--tabular-data-tasks-widget -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
<artifactId>tabular-data-tasks-widget</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
2013-10-03 18:24:55 +02:00
|
|
|
<!-- LOGGING -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.allen-sauer.gwt.log</groupId>
|
|
|
|
<artifactId>gwt-log</artifactId>
|
|
|
|
</dependency>
|
2013-09-27 17:35:58 +02:00
|
|
|
|
2013-10-03 18:24:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2013-10-30 15:33:41 +01:00
|
|
|
|
|
|
|
|
2013-10-03 18:24:55 +02:00
|
|
|
<!-- JUnit TEST -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-09-27 17:35:58 +02:00
|
|
|
|
2013-03-15 17:32:47 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<!-- Generate compiled stuff in the folder used for developing mode -->
|
|
|
|
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
|
2013-10-30 15:33:41 +01:00
|
|
|
<resources>
|
2013-12-16 14:57:53 +01:00
|
|
|
<resource>
|
|
|
|
<directory>${webappDirectory}/lib</directory>
|
|
|
|
</resource>
|
2013-10-30 15:33:41 +01:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2013-12-16 19:09:51 +01:00
|
|
|
|
2013-10-30 15:33:41 +01:00
|
|
|
</resources>
|
2013-03-15 17:32:47 +01:00
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<!-- GWT Maven Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
2013-10-01 19:02:16 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2013-03-15 17:32:47 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
2013-10-03 18:24:55 +02:00
|
|
|
<goal>test</goal>
|
2013-03-15 17:32:47 +01:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<runTarget>TabularDataPortlet.html</runTarget>
|
|
|
|
<hostedWebapp>${webappDirectory}</hostedWebapp>
|
2013-10-30 15:33:41 +01:00
|
|
|
<module>org.gcube.portlets.user.td.tabulardataportlet</module>
|
2013-03-15 17:32:47 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2013-12-16 19:09:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
<!-- Include static jar into WEB-INF/lib -->
|
|
|
|
<webResources>
|
|
|
|
<resource>
|
|
|
|
<directory>lib</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.jar</include>
|
|
|
|
</includes>
|
|
|
|
<targetPath>WEB-INF/lib</targetPath>
|
|
|
|
</resource>
|
|
|
|
</webResources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Maven Surefire Plugin for Test -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.16</version>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>false</skipTests>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.surefire</groupId>
|
|
|
|
<artifactId>surefire-junit47</artifactId>
|
|
|
|
<version>2.16</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
2013-12-16 19:36:41 +01:00
|
|
|
<!-- Maven
|
2013-12-16 19:09:51 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-profile</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${configDirectory}</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${templatesDirectory}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>profile.xml</include>
|
|
|
|
</includes>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-distro-resources</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${distroDirectory}</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${templatesDirectory}</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>profile.xml</exclude>
|
|
|
|
<exclude>descriptor.xml</exclude>
|
|
|
|
</excludes>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${distroDirectory}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
</fileset>
|
|
|
|
<fileset>
|
|
|
|
<directory>${configDirectory}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${templatesDirectory}/descriptor.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>servicearchive</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2013-12-16 19:36:41 +01:00
|
|
|
-->
|
2013-12-16 19:09:51 +01:00
|
|
|
<plugin>
|
2013-03-15 17:32:47 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-12-16 19:09:51 +01:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
2013-03-15 17:32:47 +01:00
|
|
|
<configuration>
|
2013-12-16 19:09:51 +01:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2013-03-15 17:32:47 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-12-16 19:09:51 +01:00
|
|
|
|
2013-12-16 19:36:41 +01:00
|
|
|
<!-- SA Plugin -->
|
2013-10-03 18:24:55 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-12-16 19:09:51 +01:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
2013-10-03 18:24:55 +02:00
|
|
|
<configuration>
|
2013-12-16 19:09:51 +01:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>${distroDirectory}/descriptor.xml</descriptor>
|
|
|
|
</descriptors>
|
2013-10-03 18:24:55 +02:00
|
|
|
</configuration>
|
2013-12-16 19:09:51 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>servicearchive</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2013-10-03 18:24:55 +02:00
|
|
|
</plugin>
|
2013-10-28 11:07:51 +01:00
|
|
|
<plugin>
|
2013-12-16 19:09:51 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-10-28 11:07:51 +01:00
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2013-12-16 19:09:51 +01:00
|
|
|
<version>2.5</version>
|
2013-10-28 11:07:51 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-profile</id>
|
2013-12-16 19:09:51 +01:00
|
|
|
<phase>install</phase>
|
2013-10-28 11:07:51 +01:00
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2013-12-16 19:09:51 +01:00
|
|
|
<outputDirectory>target</outputDirectory>
|
2013-10-28 11:07:51 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2013-12-16 19:09:51 +01:00
|
|
|
<directory>${distroDirectory}</directory>
|
|
|
|
<filtering>true</filtering>
|
2013-10-28 11:07:51 +01:00
|
|
|
<includes>
|
|
|
|
<include>profile.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-12-16 19:36:41 +01:00
|
|
|
|
2013-10-30 15:33:41 +01:00
|
|
|
|
|
|
|
|
2013-12-16 19:09:51 +01:00
|
|
|
</plugins>
|
2013-03-15 17:32:47 +01:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
2013-10-01 19:02:16 +02:00
|
|
|
<version>LATEST</version>
|
2013-03-15 17:32:47 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
</project>
|