From 2734b8404dfa2c0880a1b29a058c6ebf9bae7abc Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville <stephane.dallongeville@pasteur.fr> Date: Wed, 24 Aug 2022 18:02:57 +0200 Subject: [PATCH] Updated for parent pom to 2.1 --- pom.xml | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index e50774f..608317b 100644 --- a/pom.xml +++ b/pom.xml @@ -3,11 +3,12 @@ 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> - <artifactId>pom-icy</artifactId> <groupId>org.bioimageanalysis.icy</groupId> - <version>2.0.0</version> - </parent> + <artifactId>pom-icy</artifactId> + <version>2.1.0</version> + </parent> <artifactId>apache-commons-csv</artifactId> <version>1.9.0</version> @@ -52,33 +53,16 @@ <!-- Project properties --> <properties> - <artifact-to-include>commons-csv</artifact-to-include> + <artifact-to-include>commons-csv</artifact-to-include> </properties> - - <profiles> - <profile> - <id>icy-plugin-extract-library</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - </profile> - </profiles> - + <!-- List of project's dependencies --> <dependencies> - <!-- The core of Icy --> - <dependency> - <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>icy-kernel</artifactId> - <version>${icy-kernel.version}</version> - </dependency> - <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <version>1.9.0</version> </dependency> - </dependencies> <!-- Icy Maven repository (to find parent POM) --> -- GitLab