142 lines
3.4 KiB
XML
142 lines
3.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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/maven-v4_0_0.xsd">
|
||
|
<parent>
|
||
|
<artifactId>maven-parent</artifactId>
|
||
|
<groupId>org.gcube.tools</groupId>
|
||
|
<version>1.0.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.gcube.spatial.data</groupId>
|
||
|
<artifactId>geo-utility</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<name>A library with several utility class to work with geo-spatial data: WmsUrlValidator, GeoGetStylesUtils, etc..</name>
|
||
|
|
||
|
<properties>
|
||
|
<distroDirectory>distro</distroDirectory>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- DOM -->
|
||
|
<dependency>
|
||
|
<groupId>org.w3c</groupId>
|
||
|
<artifactId>dom</artifactId>
|
||
|
<version>2.3.0-jaxb-1.0.6</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>1.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- <dependency> -->
|
||
|
<!-- <groupId>org.apache.commons</groupId> -->
|
||
|
<!-- <artifactId>commons-csv</artifactId> -->
|
||
|
<!-- <version>1.2</version> -->
|
||
|
<!-- </dependency> -->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.json</groupId>
|
||
|
<artifactId>json</artifactId>
|
||
|
<version>20140107</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>log4j</groupId>
|
||
|
<artifactId>log4j</artifactId>
|
||
|
<version>1.2.16</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
<version>1.6.4</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**/*.*</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/*.*</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
<version>2.5</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>copy-profile</id>
|
||
|
<phase>install</phase>
|
||
|
<goals>
|
||
|
<goal>copy-resources</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<outputDirectory>target</outputDirectory>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>${distroDirectory}</directory>
|
||
|
<filtering>true</filtering>
|
||
|
<includes>
|
||
|
<include>profile.xml</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<descriptors>
|
||
|
<descriptor>${distroDirectory}/descriptor.xml</descriptor>
|
||
|
</descriptors>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>servicearchive</id>
|
||
|
<phase>install</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
</build>
|
||
|
</project>
|