2020-01-31 12:46:25 +01:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-04-05 17:24:13 +02:00
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 >
<groupId > org.gcube.tools</groupId>
2020-01-31 12:46:25 +01:00
<artifactId > maven-parent</artifactId>
<version > 1.1.0</version>
2016-04-05 17:24:13 +02:00
<relativePath />
</parent>
<groupId > org.gcube.portal</groupId>
<artifactId > landing-page-library</artifactId>
2020-04-23 09:34:29 +02:00
<version > 1.3.1</version>
2016-04-05 17:24:13 +02:00
<packaging > jar</packaging>
2020-01-31 12:46:25 +01:00
<scm >
2020-04-15 16:53:24 +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>
2020-01-31 12:46:25 +01:00
</scm>
2016-04-05 17:24:13 +02:00
<name > landing-page-library</name>
2016-06-23 17:15:08 +02:00
<description > landing-page-library is a library used in different hooks that understands from which sites the user enter the gateway and redirects accordingly</description>
2016-04-05 17:24:13 +02:00
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<liferay.version > 6.2.5</liferay.version>
</properties>
2016-07-05 17:03:49 +02:00
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
<artifactId > maven-portal-bom</artifactId>
2020-01-31 12:46:25 +01:00
<version > 3.6.0</version>
2016-07-05 17:03:49 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2016-04-05 17:24:13 +02:00
<dependencies >
2017-01-26 17:34:50 +01:00
<dependency >
<groupId > org.gcube.dvos</groupId>
<artifactId > usermanagement-core</artifactId>
<scope > provided</scope>
</dependency>
2016-07-05 17:03:49 +02:00
<dependency >
<groupId > org.gcube.common.portal</groupId>
<artifactId > portal-manager</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.portal</groupId>
<artifactId > notifications-common-library</artifactId>
<scope > provided</scope>
</dependency>
2016-04-05 17:24:13 +02:00
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > portal-service</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > util-java</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > javax.portlet</groupId>
<artifactId > portlet-api</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > servlet-api</artifactId>
<version > 2.4</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > javax.servlet.jsp</groupId>
<artifactId > jsp-api</artifactId>
<version > 2.0</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
</dependency>
</dependencies>
2020-01-31 12:46:25 +01:00
<build >
<plugins >
<plugin >
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<encoding > UTF-8</encoding>
2020-04-23 09:34:29 +02:00
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
2020-01-31 12:46:25 +01:00
</configuration>
</plugin>
<plugin >
<artifactId > maven-resources-plugin</artifactId>
<version > 2.5</version>
<configuration >
<encoding > UTF-8</encoding>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
<configuration >
<additionalparam > -Xdoclint:none</additionalparam>
<additionalJOption > -Xdoclint:none</additionalJOption>
</configuration>
<version > 3.1.0</version>
<executions >
<execution >
<id > generate-doc</id>
<phase > install</phase>
<goals >
<goal > jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2016-04-05 17:24:13 +02:00
</project>