Skip to content
Snippets Groups Projects
pom.xml 7.55 KiB
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>
    <groupId>fr.amap.lidar.amapvox</groupId>
    <artifactId>amapvox-aggregator</artifactId>
    <packaging>pom</packaging>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    
    <name>AMAPVoxAggregator</name>
    
    <modules>
        <module>AMAPVoxLauncher</module>
        <module>AMAPVoxGUI</module>
        <module>AMAPVoxCore</module>
        <module>AMAPVoxVisualization</module>
        <module>Dependencies/Commons</module>
        <module>Dependencies/LidarFormats</module>
        <module>Dependencies/ThreedViewer</module>
    </modules>  
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
            </plugin>
        </plugins>
    </build>
    
    <repositories>
        <repository>
            <id>default</id>
            <url>http://repo.maven.apache.org/maven2/</url>
        </repository>
        <repository>
            <id>unidata-all</id>
            <name>Unidata All</name>
            <url>https://artifacts.unidata.ucar.edu/repository/unidata-all/</url>
        </repository>
    </repositories>
    
    <!-- Shared dependencies between each child projects -->
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
                <version>1.2.17</version>
            </dependency>
            
            <dependency>
                <groupId>fr.amap.lidar.amapvox</groupId>
                <artifactId>amapvox-gui</artifactId>
            </dependency>
            
            <!-- Dependencies used by AMAPVoxGUI -->
            <dependency>
                <groupId>org.controlsfx</groupId>
                <artifactId>controlsfx</artifactId>
                <version>8.40.12</version>
            </dependency>
            <dependency>
                <groupId>fr.amap.commons</groupId>
                <artifactId>commons-javafx</artifactId>
            </dependency>
            <dependency>
                <groupId>fr.amap.lidar.amapvox</groupId>
                <artifactId>amapvox-core</artifactId>
            </dependency>
            <dependency>
                <groupId>fr.amap.threed</groupId>
                <artifactId>threed-viewer</artifactId>
                <version>1.1</version>
            </dependency>
            <dependency>
                <groupId>amap.lidar.amapvox</groupId>
                <artifactId>visualization</artifactId>
                <version>1.3.1</version>
            </dependency>
            <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
                <version>1.7.12</version>
            </dependency>
            <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
                <version>1.7.12</version>
            </dependency>
            <dependency>
                <groupId>org.jsoup</groupId>
                <artifactId>jsoup</artifactId>
                <version>1.10.1</version>
            </dependency>
            <dependency>
                <groupId>org.apache.xmlgraphics</groupId>
                <artifactId>batik-rasterizer</artifactId>
                <version>1.7</version>
            </dependency>
            <dependency>
                <groupId>org.apache.xmlgraphics</groupId>
                <artifactId>batik-codec</artifactId>
                <version>1.7</version>
            </dependency>
            <dependency>
                <groupId>net.objecthunter</groupId>
                <artifactId>exp4j</artifactId>
                <version>0.4.7</version>
            </dependency>
            <dependency>
                <groupId>org.jdom</groupId>
                <artifactId>jdom2</artifactId>
                <version>2.0.6</version>
            </dependency>
            
            <!-- Dependencies used by AMAPVoxCore -->
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-lang3</artifactId>
                <version>3.5</version>
            </dependency>
            <dependency>
                <groupId>fr.amap.lidar</groupId>
                <artifactId>format-riegl</artifactId>
                <version>1.1.0</version>
            </dependency>
            <dependency>
                <groupId>fr.amap.lidar</groupId>
                <artifactId>format-las</artifactId>
                <version>1.1.0</version>
            </dependency>
            <dependency>
                <groupId>fr.amap.lidar</groupId>
                <artifactId>format-gridded</artifactId>
                <version>1.1.0</version>
            </dependency>
            <dependency>
                <groupId>fr.amap.lidar</groupId>
                <artifactId>format-shot</artifactId>
                <version>1.1.0</version>
            </dependency>
            <!-- commons-util and commons-math could be removed since they are
            loaded by commons-spds and commons-raster. They are declared though
            as they are directly needed by amapvox-core and amapvox-gui -->
            <dependency>
                <groupId>fr.amap.commons</groupId>
                <artifactId>commons-util</artifactId>
                <version>1.3.0</version>
            </dependency>
             <dependency>
                <groupId>fr.amap.commons</groupId>
                <artifactId>commons-math</artifactId>
                <version>1.3.0</version>
            </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>org.jfree</groupId>
                <artifactId>jfreechart</artifactId>
                <version>1.0.19</version>
            </dependency>
            <dependency>
                <groupId>net.sf.saxon</groupId>
                <artifactId>Saxon-HE</artifactId>
                <version>9.6.0-6</version>
            </dependency>
            <dependency>
                <groupId>edu.ucar</groupId>
                <artifactId>cdm</artifactId>
                <version>4.5.5</version>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    
</project>