jzy3d-api/jzy3d-swt/pom.xml

97 lines
2.6 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2015-01-01 11:21:02 -08:00
<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>org.jzy3d</groupId>
<artifactId>jzy3d-swt</artifactId>
2015-01-01 11:21:02 -08:00
<parent>
<groupId>org.jzy3d</groupId>
<artifactId>jzy3d-master</artifactId>
2015-10-18 15:23:38 -07:00
<version>1.0.0-SNAPSHOT</version>
2015-01-01 11:21:02 -08:00
</parent>
2015-01-01 11:21:02 -08:00
<name>Jzy3d SWT Tools</name>
2015-01-01 11:21:02 -08:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>swt-repo</id>
<url>https://swt-repo.googlecode.com/svn/repo/</url>
2015-01-01 11:21:02 -08:00
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.jzy3d</groupId>
<artifactId>jzy3d-api</artifactId>
2015-10-18 15:23:38 -07:00
<version>1.0.0-SNAPSHOT</version>
2015-01-01 11:21:02 -08:00
</dependency>
<dependency>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
<version>4.2.1</version>
</dependency>
2015-10-18 15:23:38 -07:00
<!--<dependency> <groupId>org.eclipse.swt.win32.win32</groupId> <artifactId>x86</artifactId>
2015-01-01 11:21:02 -08:00
<version>4.2.1</version> </dependency> -->
<dependency>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
<version>4.2.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
2015-01-01 11:21:02 -08:00
<build>
<testSourceDirectory>src/test/java</testSourceDirectory>
<pluginManagement><!-- using it to have m2e being able to run add-source -->
2015-01-01 11:21:02 -08:00
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!--<excludes> <exclude>org/jzy3d/junit/ChartTest.java</exclude> </excludes> -->
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
2015-10-18 15:23:38 -07:00
</project>