From 8b2c22795abdcda66362cba44add417e7826f12a Mon Sep 17 00:00:00 2001
From: Amandine Tournay <amandine.tournay@pasteur.fr>
Date: Sun, 14 Aug 2022 02:53:17 +0200
Subject: [PATCH] Upgraded POM to latest version

---
 clipper/pom.xml | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/clipper/pom.xml b/clipper/pom.xml
index 13f261a..e3213dc 100644
--- a/clipper/pom.xml
+++ b/clipper/pom.xml
@@ -2,16 +2,27 @@
 <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>
 	<parent>
-		<groupId>org.bioimageanalysis.icy</groupId>
-		<artifactId>parent-pom-plugin</artifactId>
-		<version>1.0.4</version>
+		<artifactId>pom-icy</artifactId>
+        <groupId>org.bioimageanalysis.icy</groupId>
+        <version>2.0.0</version>
 	</parent>
+	
 	<artifactId>clipper</artifactId>
 	<version>6.4.2</version>
+	
 	<name>A Polygon clipper library for Icy</name>
 	<description>Polygon Clipper is a library to execute various boolean operations (Union, Difference, XOR, etc.) on arbitrary 2D polygons, e.g. calculate the area in which two polygons overlap. It comes with two Demo applications, one for the console and one using a Swing based GUI. This implementation is taken from the de.lighti.clipper implementation v6.4.2 which uses a Boost Software License - Version 1.0.
 	</description>
-	<dependencies/>
+	
+	<profiles>
+        <profile>
+            <id>icy-plugin</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+        </profile>
+    </profiles>
+	
 	<repositories>
 		<repository>
 			<id>icy</id>
-- 
GitLab