mirror of https://github.com/rusefi/jzy3d-api.git
29 lines
818 B
XML
29 lines
818 B
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.jzy3d</groupId>
|
|
<artifactId>jzy3d-all</artifactId>
|
|
<version>2.2.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>jzy3d-tester</artifactId>
|
|
<name>Jzy3d Tester</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>jzy3d-core-awt</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>compile</scope> <!-- Provide junit also for main classes of this module -->
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|