From f555e45e217e6a538cb9b1969e99ce5125c42aff 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 --- pom.xml | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index b80d4c1..651dad6 100644 --- a/pom.xml +++ b/pom.xml @@ -6,10 +6,10 @@ <!-- Inherited Icy Parent POM --> <parent> + <artifactId>pom-icy</artifactId> <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>parent-pom-plugin</artifactId> - <version>1.0.3</version> - </parent> + <version>2.0.0</version> + </parent> <!-- Project Information --> <artifactId>3d-spheres-vtk</artifactId> @@ -72,10 +72,14 @@ </properties> - <!-- Project build configuration --> - <build> - - </build> + <profiles> + <profile> + <id>icy-plugin</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + </profiles> <!-- List of project's dependencies --> <dependencies> @@ -83,11 +87,18 @@ <dependency> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>icy-kernel</artifactId> + <version>${icy-kernel.version}</version> </dependency> <dependency> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>protocols</artifactId> + <version>${protocols.version}</version> </dependency> + <dependency> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>icy-vtk</artifactId> + <version>${icy-vtk.version}</version> + </dependency> </dependencies> <!-- Icy Maven repository (to find parent POM) --> -- GitLab