mirror of https://github.com/rusefi/jzy3d-api.git
171 lines
4.4 KiB
XML
171 lines
4.4 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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>org.jzy3d</groupId>
|
||
|
<artifactId>jzy3d-depthpeeling</artifactId>
|
||
|
<!-- <version>1.0.0-SNAPSHOT</version> -->
|
||
|
|
||
|
<version>1.0.1-SNAPSHOT</version>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.jzy3d</groupId>
|
||
|
<artifactId>jzy3d-master</artifactId>
|
||
|
<version>1.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
|
||
|
<name>Jzy3d Depth Peeling Extension</name>
|
||
|
<!--<version>1.0.0-SNAPSHOT</version> -->
|
||
|
<!-- <parent> <groupId>org.jzy3d</groupId> <artifactId>jzy3d-extensions</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version> </parent> -->
|
||
|
|
||
|
<scm>
|
||
|
<connection>scm:git:https://github.com/jzy3d/jzy3d-depthpeeling</connection>
|
||
|
|
||
|
<tag>1.0.0</tag>
|
||
|
</scm>
|
||
|
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>jzy3d-releases</id>
|
||
|
<name>Jzy3d Releases</name>
|
||
|
<url>http://maven.jzy3d.org/releases</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>jzy3d-snapshots</id>
|
||
|
<name>Jzy3d Snapshots</name>
|
||
|
<url>http://maven.jzy3d.org/snapshots</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>jzy3d-ftp</id>
|
||
|
<name>Jzy3d Maven Folder</name>
|
||
|
<url>ftp://ftp.cluster013.ovh.net/maven/releases</url>
|
||
|
</repository>
|
||
|
<snapshotRepository>
|
||
|
<id>jzy3d-ftp</id>
|
||
|
<name>Jzy3d Maven Folder SNAPSHOTS</name>
|
||
|
<url>ftp://ftp.cluster013.ovh.net/maven/snapshots</url>
|
||
|
</snapshotRepository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jzy3d</groupId>
|
||
|
<artifactId>jzy3d-api</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<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/trials/</source>
|
||
|
<source>src/api/</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.7</source>
|
||
|
<target>1.7</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>
|
||
|
|
||
|
<!-- DUPPLICATE FOR ECLIPSE -->
|
||
|
|
||
|
<!-- <testSourceDirectory>src/test/java</testSourceDirectory> -->
|
||
|
<pluginManagement><!-- using it to have m2e being able to run add-source -->
|
||
|
<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/trials/</source>
|
||
|
<source>src/api/</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.7</source>
|
||
|
<target>1.7</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>
|
||
|
|
||
|
<extensions>
|
||
|
<extension>
|
||
|
<groupId>org.apache.maven.wagon</groupId>
|
||
|
<artifactId>wagon-ftp</artifactId>
|
||
|
<version>1.0-beta-6</version>
|
||
|
</extension>
|
||
|
</extensions>
|
||
|
</build>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>disable-java8-doclint</id>
|
||
|
<activation>
|
||
|
<jdk>[1.8,)</jdk>
|
||
|
</activation>
|
||
|
<properties>
|
||
|
<additionalparam>-Xdoclint:none</additionalparam>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
</project>
|