Created
November 23, 2016 14:15
-
-
Save MaSven/9a6eafa188033fa9246342f8fcd728fa to your computer and use it in GitHub Desktop.
Standard pom für jzy3d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>isys</groupId> | |
<artifactId>Datenanalyse</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<repositories> | |
<repository> | |
<id>jzy3d-snapshots</id> | |
<name>Jzy3d Snapshots</name> | |
<url>http://maven.jzy3d.org/snapshots</url> | |
</repository> | |
<repository> | |
<id>jzy3d-releases</id> | |
<name>Jzy3d Snapshots</name> | |
<url>http://maven.jzy3d.org/releases</url> | |
</repository> | |
</repositories> | |
<name>Datenanalyse</name> | |
<url>http://maven.apache.org</url> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.jzy3d</groupId> | |
<artifactId>jzy3d-api</artifactId> | |
<version>0.9.1</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.1</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment