2018-04-13 16:59:33 +02:00
<?xml version="1.0"?>
2020-04-21 10:47:37 +02:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-04-13 16:59:33 +02: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>
2024-09-20 11:50:31 +02:00
<version > 1.2.0</version>
2018-04-13 16:59:33 +02:00
<relativePath />
</parent>
<groupId > org.gcube.portlets.user</groupId>
<artifactId > workspace-widget-portlet</artifactId>
<packaging > war</packaging>
<name > workspace-widget-portlet Portlet</name>
2024-09-20 11:50:31 +02:00
<version > 1.5.3-SNAPSHOT</version>
2018-04-13 16:59:33 +02:00
<description >
2020-04-21 10:47:37 +02:00
Workspace Widget Portlet is a small Front-end component looking like G Drive which exposes the content of the user's workspace or VRE Folders in read only mode.
</description>
2018-04-13 16:59:33 +02:00
<scm >
2020-04-21 10:47:37 +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>
2021-04-16 17:05:47 +02:00
<url > https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
2018-04-13 16:59:33 +02:00
</scm>
2019-10-29 16:35:31 +01:00
<properties >
<distroDirectory > distro</distroDirectory>
<liferay.version > 6.2.5</liferay.version>
<liferay.maven.plugin.version > 6.2.10.12</liferay.maven.plugin.version>
<liferay.auto.deploy.dir > /Users/massi/portal/liferay-portal-6.2-ce-ga6/deploy</liferay.auto.deploy.dir>
<liferay.app.server.deploy.dir > /Users/massi/portal/liferay-portal-6.2-ce-ga6/tomcat-7.0.62/webapps</liferay.app.server.deploy.dir>
<liferay.app.server.lib.global.dir > /Users/massi/portal/liferay-portal-6.2-ce-ga6/tomcat-7.0.62/lib/ext</liferay.app.server.lib.global.dir>
<liferay.app.server.portal.dir > /Users/massi/portal/liferay-portal-6.2-ce-ga6/tomcat-7.0.62/webapps/ROOT</liferay.app.server.portal.dir>
</properties>
2018-04-13 16:59:33 +02:00
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
<artifactId > maven-portal-bom</artifactId>
2024-09-20 11:50:31 +02:00
<version > 4.0.0-SNAPSHOT</version>
2018-04-13 16:59:33 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies >
<dependency >
<groupId > org.gcube.dvos</groupId>
<artifactId > usermanagement-core</artifactId>
2018-06-19 11:40:43 +02:00
<scope > provided</scope>
2018-04-13 16:59:33 +02:00
</dependency>
2018-05-23 17:06:09 +02:00
<dependency >
<groupId > org.gcube.portal</groupId>
<artifactId > storagehub-icons-library</artifactId>
</dependency>
2018-04-13 16:59:33 +02:00
<dependency >
<groupId > org.gcube.common.portal</groupId>
<artifactId > portal-manager</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > commons-beanutils</groupId>
<artifactId > commons-beanutils</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > storagehub-client-library</artifactId>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > authorization-client</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > common-authorization</artifactId>
<scope > provided</scope>
</dependency>
2021-04-06 12:18:19 +02:00
<dependency >
<groupId > org.gcube.portal</groupId>
<artifactId > oidc-library-portal</artifactId>
2021-05-25 17:58:30 +02:00
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > oidc-library</artifactId>
2021-04-06 12:18:19 +02:00
<scope > provided</scope>
</dependency>
2018-04-13 16:59:33 +02:00
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > portal-service</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > util-bridges</artifactId>
<version > ${liferay.version}</version>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.liferay.portal</groupId>
<artifactId > util-taglib</artifactId>
<version > ${liferay.version}</version>
<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 > javax.servlet</groupId>
<artifactId > jstl</artifactId>
<version > 1.2</version>
</dependency>
</dependencies>
2018-04-13 17:07:30 +02:00
<build >
<plugins >
<plugin >
<groupId > com.liferay.maven.plugins</groupId>
<artifactId > liferay-maven-plugin</artifactId>
<version > ${liferay.maven.plugin.version}</version>
<executions >
<execution >
<phase > generate-sources</phase>
<goals >
<goal > build-css</goal>
</goals>
</execution>
</executions>
<configuration >
<autoDeployDir > ${liferay.auto.deploy.dir}</autoDeployDir>
<appServerDeployDir > ${liferay.app.server.deploy.dir}</appServerDeployDir>
<appServerLibGlobalDir > ${liferay.app.server.lib.global.dir}</appServerLibGlobalDir>
<appServerPortalDir > ${liferay.app.server.portal.dir}</appServerPortalDir>
<liferayVersion > ${liferay.version}</liferayVersion>
<pluginType > portlet</pluginType>
</configuration>
</plugin>
<plugin >
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<encoding > UTF-8</encoding>
2020-04-21 10:47:37 +02:00
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
2018-04-13 17:07:30 +02:00
</configuration>
</plugin>
<plugin >
<artifactId > maven-resources-plugin</artifactId>
<version > 2.5</version>
<configuration >
<encoding > UTF-8</encoding>
</configuration>
</plugin>
2020-04-21 10:47:37 +02:00
<plugin >
2019-11-15 16:48:30 +01:00
<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>
2018-04-13 17:07:30 +02:00
</plugins>
</build>
2018-04-13 16:59:33 +02:00
</project>