2015-03-02 17:04:33 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-04-15 12:06:29 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-03-02 17:04:33 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
2020-04-15 12:06:29 +02:00
|
|
|
<version>1.1.0</version>
|
2015-03-02 17:04:33 +01:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2015-03-03 11:21:17 +01:00
|
|
|
<artifactId>join-vre</artifactId>
|
2015-03-02 17:04:33 +01:00
|
|
|
<packaging>war</packaging>
|
2020-06-03 18:05:58 +02:00
|
|
|
<version>3.7.0</version>
|
2015-03-03 12:29:28 +01:00
|
|
|
<name>gCube Join VRE Portlet</name>
|
|
|
|
<description>Display the available VRE to Join</description>
|
2015-03-02 17:04:33 +01:00
|
|
|
<scm>
|
2020-04-15 12:06:29 +02:00
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
2015-03-02 17:04:33 +01:00
|
|
|
</scm>
|
|
|
|
<properties>
|
|
|
|
<!-- Convenience property to set the GWT version -->
|
2018-03-13 16:00:58 +01:00
|
|
|
<gwtVersion>2.8.2</gwtVersion>
|
2015-03-02 17:04:33 +01:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
2017-07-04 19:05:31 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2017-05-03 16:55:31 +02:00
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2015-03-02 17:04:33 +01:00
|
|
|
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
2016-03-17 19:29:03 +01:00
|
|
|
<liferay.version>6.2.5</liferay.version>
|
2015-03-02 17:04:33 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
2020-04-15 12:06:29 +02:00
|
|
|
<version>3.6.0</version>
|
2015-03-02 17:04:33 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2015-03-25 16:56:15 +01:00
|
|
|
<version>${gwtVersion}</version>
|
2015-03-02 17:04:33 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
2015-03-25 16:56:15 +01:00
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-05-15 11:03:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal.mailing</groupId>
|
|
|
|
<artifactId>email-templates-library</artifactId>
|
2020-04-15 12:06:29 +02:00
|
|
|
<version>[1.0.0, 2.0.0-SNAPSHOT)</version>
|
2017-05-15 11:03:21 +02:00
|
|
|
</dependency>
|
2016-03-17 19:29:03 +01:00
|
|
|
<dependency>
|
2017-07-04 19:05:31 +02:00
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>terms-of-use-library</artifactId>
|
2020-04-15 12:06:29 +02:00
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2016-03-17 19:29:03 +01:00
|
|
|
</dependency>
|
2016-03-24 18:51:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google</groupId>
|
|
|
|
<artifactId>gwt-jsonmaker</artifactId>
|
|
|
|
</dependency>
|
2015-09-02 19:26:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.gwtbootstrap</groupId>
|
|
|
|
<artifactId>gwt-bootstrap</artifactId>
|
|
|
|
</dependency>
|
2015-09-04 10:57:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common.portal</groupId>
|
|
|
|
<artifactId>portal-manager</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-03-21 16:55:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>invites-common-library</artifactId>
|
2020-04-15 12:06:29 +02:00
|
|
|
<version>[1.4.0, 2.0.0-SNAPSHOT)</version>
|
2016-03-21 16:55:32 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portal</groupId>
|
|
|
|
<artifactId>social-networking-library</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-03-24 18:51:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-scope-maps</artifactId>
|
2020-06-03 18:05:58 +02:00
|
|
|
<scope>provided</scope>
|
2016-03-24 18:51:32 +01:00
|
|
|
</dependency>
|
2015-03-02 17:04:33 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.dvos</groupId>
|
|
|
|
<artifactId>usermanagement-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.liferay.portal</groupId>
|
|
|
|
<artifactId>portal-service</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-03-21 16:55:32 +01:00
|
|
|
<dependency>
|
2016-04-26 16:26:57 +02:00
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
2016-03-21 16:55:32 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-03-02 17:04:33 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.portlet</groupId>
|
|
|
|
<artifactId>portlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2017-01-02 15:07:13 +01:00
|
|
|
<scope>provided</scope>
|
2015-03-02 17:04:33 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2017-01-02 15:07:13 +01:00
|
|
|
<scope>provided</scope>
|
2015-03-02 17:04:33 +01:00
|
|
|
</dependency>
|
2015-03-03 17:13:12 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8</version>
|
2017-01-02 15:07:13 +01:00
|
|
|
<scope>test</scope>
|
2015-03-03 17:13:12 +01:00
|
|
|
</dependency>
|
2015-03-02 17:04:33 +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>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
<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>
|
2015-03-03 15:08:40 +01:00
|
|
|
<runTarget>JoinVRE.html</runTarget>
|
2015-03-02 17:04:33 +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>
|
|
|
|
<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>
|
|
|
|
<configuration>
|
2017-05-03 16:55:31 +02:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2015-03-02 17:04:33 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-04-15 12:06:29 +02:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2015-03-02 17:04:33 +01:00
|
|
|
<configuration>
|
2020-04-15 12:06:29 +02:00
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
2015-03-02 17:04:33 +01:00
|
|
|
</configuration>
|
2020-04-15 12:06:29 +02:00
|
|
|
<version>3.1.0</version>
|
2015-03-02 17:04:33 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2020-04-15 12:06:29 +02:00
|
|
|
<id>generate-doc</id>
|
2015-03-02 17:04:33 +01:00
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
2020-04-15 12:06:29 +02:00
|
|
|
<goal>jar</goal>
|
2015-03-02 17:04:33 +01:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|
|
|
|
|