mirror of
https://github.com/meteoinfo/MeteoInfo.git
synced 2025-12-08 20:36:05 +00:00
159 lines
5.6 KiB
XML
159 lines
5.6 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/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>MeteoInfo</artifactId>
|
|
<groupId>org.meteothink</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>meteoinfo-chart</artifactId>
|
|
<name>meteoinfo-chart</name>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<freehep.version>2.4</freehep.version>
|
|
<jogl.version>2.5.0</jogl.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jogamp-remote</id>
|
|
<name>jogamp mirror</name>
|
|
<url>https://www.jogamp.org/deployment/maven/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>freehep</id>
|
|
<name>freehep</name>
|
|
<url>https://java.freehep.org/maven2/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>meteoinfo-render2d</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>meteoinfo-data</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>meteoinfo-image</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>meteoinfo-math</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.l2fprod</groupId>
|
|
<artifactId>l2fprod-common-all</artifactId>
|
|
<version>6.9.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freehep</groupId>
|
|
<artifactId>freehep-util</artifactId>
|
|
<version>2.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freehep</groupId>
|
|
<artifactId>freehep-graphicsio-emf</artifactId>
|
|
<version>${freehep.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freehep</groupId>
|
|
<artifactId>freehep-graphicsio-pdf</artifactId>
|
|
<version>${freehep.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freehep</groupId>
|
|
<artifactId>freehep-graphics2d</artifactId>
|
|
<version>${freehep.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.freehep</groupId>
|
|
<artifactId>freehep-graphicsio-ps</artifactId>
|
|
<version>${freehep.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>5.5.13.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jogamp.gluegen</groupId>
|
|
<artifactId>gluegen-rt-main</artifactId>
|
|
<version>${jogl.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jogamp.jogl</groupId>
|
|
<artifactId>jogl-all-main</artifactId>
|
|
<version>${jogl.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.joml</groupId>
|
|
<artifactId>joml</artifactId>
|
|
<version>1.10.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.36</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!--<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>-->
|
|
<plugin>
|
|
<inherited>true</inherited>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<failOnError>false</failOnError>
|
|
<failOnWarnings>false</failOnWarnings>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |