Newer
Older
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.amap.lidar.amapvox</groupId>
<artifactId>amapvox-aggregator</artifactId>
philippe.verley_ird.fr
committed
<version>1.4.2</version>
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
</parent>
<artifactId>amapvox-core</artifactId>
<packaging>jar</packaging>
<name>AMAPVoxCore</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<enableAssertions>true</enableAssertions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.lidar</groupId>
<artifactId>format-riegl</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.lidar</groupId>
<artifactId>format-las</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.lidar</groupId>
<artifactId>format-gridded</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.lidar</groupId>
<artifactId>format-shot</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.commons</groupId>
<artifactId>commons-util</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.commons</groupId>
<artifactId>commons-math</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.commons</groupId>
<artifactId>commons-spds</artifactId>
</dependency>
<dependency>
<groupId>fr.amap.commons</groupId>
<artifactId>commons-raster</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>edu.ucar</groupId>
<artifactId>cdm</artifactId>
</dependency>
</dependencies>
</project>