2020-04-09 09:13:35 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2012-12-28 01:01:32 +01: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-04-09 09:13:35 +02:00
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<version>1.1.0</version>
|
2012-12-28 01:01:32 +01:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.portlets.admin</groupId>
|
|
|
|
<artifactId>resource-sweeper-widget</artifactId>
|
2020-04-09 09:13:35 +02:00
|
|
|
<version>2.4.0-SNAPSHOT</version>
|
2012-12-28 01:01:32 +01:00
|
|
|
<name>gCube Resource Sweeper Widget</name>
|
2020-04-09 09:13:35 +02:00
|
|
|
<description>
|
|
|
|
Resource Sweeper Widget is a GWT Widget integrated with RMP portlet which provide a WEB UI to clean manually the IS of dead and expired resources.
|
|
|
|
</description>
|
|
|
|
<scm>
|
|
|
|
<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>
|
|
|
|
</scm>
|
2012-12-28 01:01:32 +01:00
|
|
|
<properties>
|
|
|
|
<!-- Convenience property to set the GWT version -->
|
2015-04-14 12:54:44 +02:00
|
|
|
<gwtVersion>2.7.0</gwtVersion>
|
2012-12-28 01:01:32 +01:00
|
|
|
<distroDirectory>distro</distroDirectory>
|
2020-04-09 09:13:35 +02:00
|
|
|
<!-- GWT 2.7 needs as source java 1.7 -->
|
2015-04-14 12:54:44 +02:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
2012-12-28 01:01:32 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
2013-09-26 12:42:33 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>maven-portal-bom</artifactId>
|
2020-04-09 09:13:35 +02:00
|
|
|
<version>3.6.0-SNAPSHOT</version>
|
2013-09-26 12:42:33 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2012-12-28 01:01:32 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
2015-04-14 12:54:44 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2012-12-28 01:01:32 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-09-19 18:20:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
2015-04-14 12:54:44 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2012-12-28 01:01:32 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sencha.gxt</groupId>
|
2015-04-14 12:54:44 +02:00
|
|
|
<artifactId>gxt2.2.5-gwt2.X</artifactId>
|
|
|
|
<version>2.7.0</version>
|
|
|
|
<scope>compile</scope>
|
2012-12-28 01:01:32 +01:00
|
|
|
</dependency>
|
2012-12-28 18:53:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.admin</groupId>
|
|
|
|
<artifactId>rmp-common-library</artifactId>
|
2020-04-09 09:13:35 +02:00
|
|
|
<version>[2.8.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
2013-10-07 12:56:48 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.resources.discovery</groupId>
|
|
|
|
<artifactId>ic-client</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-04-14 12:54:44 +02:00
|
|
|
<dependency>
|
2013-10-07 12:56:48 +02:00
|
|
|
<groupId>org.gcube.resources</groupId>
|
|
|
|
<artifactId>registry-publisher</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<scope>provided</scope>
|
2012-12-28 18:53:49 +01:00
|
|
|
</dependency>
|
2012-12-28 01:01:32 +01:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-04-09 09:13:35 +02:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2012-12-28 01:01:32 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
2020-04-09 09:13:35 +02:00
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
2012-12-28 01:01:32 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-04-09 09:13:35 +02:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2012-12-28 01:01:32 +01:00
|
|
|
<configuration>
|
2020-04-09 09:13:35 +02:00
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
2012-12-28 01:01:32 +01:00
|
|
|
</configuration>
|
2020-04-09 09:13:35 +02:00
|
|
|
<version>3.1.0</version>
|
2012-12-28 01:01:32 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2020-04-09 09:13:35 +02:00
|
|
|
<id>generate-doc</id>
|
2012-12-28 01:01:32 +01:00
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
2020-04-09 09:13:35 +02:00
|
|
|
<goal>jar</goal>
|
2012-12-28 01:01:32 +01:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- GWT Maven Plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>gwt-maven-plugin</artifactId>
|
2013-09-19 18:20:34 +02:00
|
|
|
<version>${gwtVersion}</version>
|
2012-12-28 01:01:32 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-user</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
<artifactId>gwt-dev</artifactId>
|
|
|
|
<version>${gwtVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!-- JS is only needed in the package phase, this speeds up testing -->
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>resources</goal>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<!-- Plugin configuration. There are many available options, see gwt-maven-plugin
|
|
|
|
documentation at codehaus.org -->
|
|
|
|
<configuration>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|