poly2tri
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.orbisgis</groupId>
<artifactId>poly2tri</artifactId>
<version>0.7.0</version>
</dependency><?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.orbisgis</groupId>
<version>0.7.0</version>
<artifactId>poly2tri</artifactId>
<packaging>bundle</packaging>
<description>poly2tri is a 2D constrained Delaunay triangulation library that implements the Sweep-line algorithm
for constrained Delaunay triangulation described in V. Domiter and and B. Zalik.</description>
<!-- Project Information -->
<name>poly2tri</name>
<licenses>
<license>
<name>New BSD License</name>
<url>LICENSE.txt</url>
</license>
</licenses>
<url>http://github.com/orbisgis/poly2tri</url>
<developers>
<developer>
<id>obi</id>
<name>Thomas Åhlén</name>
<email>thahlen@gmail.com</email>
</developer>
<developer>
<id>nicolas-f</id>
<name>Nicolas Fortin</name>
</developer>
<developer>
<id>ebocher</id>
<name>Erwan Bocher</name>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/orbisgis/poly2tri.git</connection>
<developerConnection>scm:git:https://github.com/orbisgis/poly2tri.git</developerConnection>
<url>git@github.com:orbisgis/poly2tri.git</url>
<tag>v0.7.0</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/orbisgis/poly2tri/issues</url>
</issueManagement>
<!-- Dependencies -->
<repositories>
<repository>
<id>oss-sonatype</id>
<name>oss-sonatype-snapshot</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
<id>orbisgis-release</id>
<name>oss-sonatype-release</name>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
</repositories>
<!-- Properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-version>3.5.0</maven-version>
<java-version>11</java-version>
<maven.compiler.target>${java-version}</maven.compiler.target>
<maven.compiler.source>${java-version}</maven.compiler.source>
<!-- Dependencies versions -->
<junit-version>5.8.2</junit-version>
<slf4j-version>2.0.10</slf4j-version>
<!-- Plugins versions -->
<exec-maven-version>3.0.0</exec-maven-version>
<maven-assembly-version>3.3.0</maven-assembly-version>
<maven-bundle-version>5.1.2</maven-bundle-version>
<maven-enforcer-version>3.0.0</maven-enforcer-version>
<maven-gpg-plugin-version>3.0.1</maven-gpg-plugin-version>
<maven-jar-version>3.2.0</maven-jar-version>
<maven-javadoc-version>3.3.1</maven-javadoc-version>
<maven-release-version>3.0.0-M4</maven-release-version>
<maven-surefire-version>3.0.0-M5</maven-surefire-version>
<version-maven-version>2.8.1</version-maven-version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<!-- Sign -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin-version}</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Test -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-version}</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<!-- Package the project into a JAR file -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-version}</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Specification-Vendor-URL>${project.organization.url}</Specification-Vendor-URL>
<Specification-URL>${project.url}</Specification-URL>
</manifestEntries>
</archive>
</configuration>
</plugin>
<!-- Generation of the OSGI bundle -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Vendor>Lab-STICC - CNRS UMR 6285</Bundle-Vendor>
</instructions>
</configuration>
</plugin>
<!-- Tool version check -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-version}</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedPlugins>
<!-- Will only display a warning but does not fail the build. -->
<level>WARN</level>
<excludes>
<exclude>org.apache.maven.plugins:maven-verifier-plugin</exclude>
</excludes>
</bannedPlugins>
<requireMavenVersion>
<version>${maven-version}</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${java-version}</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<!-- Versions check -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${version-maven-version}</version>
<configuration>
<rulesUri>
https://raw.githubusercontent.com/orbisgis/orbisgis-parents/master/maven-version-rules.xml
</rulesUri>
</configuration>
</plugin>
<!-- Javadoc generation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-version}</version>
<configuration>
<doclint>all,-missing</doclint>
<quiet>true</quiet>
</configuration>
</plugin>
<!-- Maven release generation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>display-dependency-updates</goal>
<goal>display-plugin-updates</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
<inherited>false</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>