You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
2.9 KiB
122 lines
2.9 KiB
<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/xsd/maven-4.0.0.xsd"> |
|
<parent> |
|
<artifactId>maven-parent</artifactId> |
|
<groupId>org.gcube.tools</groupId> |
|
<version>1.1.0-SNAPSHOT</version> |
|
<relativePath /> |
|
</parent> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>org.gcube.portlets.admin</groupId> |
|
<artifactId>accounting-manager-theme</artifactId> |
|
<version>1.2.0-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
|
|
|
|
<name>accounting-manager-theme</name> |
|
<description>accounting-manager-theme is the theme of accounting-manager</description> |
|
|
|
<scm> |
|
<url>https://code-repo.d4science.org/gCubeSystem/accounting-manager-theme</url> |
|
</scm> |
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
<properties> |
|
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory> |
|
|
|
|
|
<KEYS>${env.KEYS}</KEYS> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
<!-- Java --> |
|
<maven.compiler.source>1.7</maven.compiler.source> |
|
|
|
<!-- GWT configuration --> |
|
<gwtVersion>2.6.1</gwtVersion> |
|
<gwtLogVersion>3.3.2</gwtLogVersion> |
|
<gxtVersion>3.1.1</gxtVersion> |
|
<gxt2Version>2.6.1</gxt2Version> |
|
</properties> |
|
|
|
<dependencies> |
|
<!-- GWT --> |
|
<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> |
|
|
|
|
|
<!-- GXT 3 --> |
|
<dependency> |
|
<groupId>com.sencha.gxt</groupId> |
|
<artifactId>gxt</artifactId> |
|
<version>${gxtVersion}</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<sourceDirectory>src</sourceDirectory> |
|
<resources> |
|
<resource> |
|
<directory>src</directory> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>1.7</source> |
|
<target>1.7</target> |
|
</configuration> |
|
</plugin> |
|
|
|
|
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<configuration> |
|
<descriptors> |
|
<descriptor>descriptor.xml</descriptor> |
|
</descriptors> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>servicearchive</id> |
|
<phase>install</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
</plugins> |
|
</build> |
|
</project> |