From ec4f16c91823d3546797d1bb7a9fb4c09b6c54f6 Mon Sep 17 00:00:00 2001 From: Amandine Tournay <amandine.tournay@pasteur.fr> Date: Sun, 14 Aug 2022 02:53:18 +0200 Subject: [PATCH] Upgraded POM to latest version --- pom.xml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 5135273..b9a25e9 100644 --- a/pom.xml +++ b/pom.xml @@ -6,9 +6,9 @@ <!-- Inherited Icy Parent POM --> <parent> + <artifactId>pom-icy</artifactId> <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>parent-pom-plugin</artifactId> - <version>1.0.5</version> + <version>2.0.0</version> </parent> <artifactId>track-manager</artifactId> @@ -21,12 +21,26 @@ he track manager enables the use of DSP-like trackProcessors. This can affect the display of tracks, selection in time or by ROIs, and also compute some views like the overlaid and animated local flow graph, polar graph. </description> + + <profiles> + <profile> + <id>icy-plugin</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + </profiles> <dependencies> + <dependency> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>icy-kernel</artifactId> + <version>${icy-kernel.version}</version> + </dependency> <dependency> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>connected-components</artifactId> - <version>4.8.7</version> + <version>${connected-components.version}</version> </dependency> </dependencies> -- GitLab