diff --git a/pom.xml b/pom.xml index 0f57dc0274f7e2b5a05242a47d4fabb331bcca5a..b79a069ae84ebba1bb6c23cbb9e91fbdcc743d36 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>microscope-remote</artifactId> @@ -58,10 +58,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> @@ -69,12 +73,25 @@ <dependency> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>icy-kernel</artifactId> + <version>${icy-kernel.version}</version> </dependency> + + <dependency> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>icy-insubstantial</artifactId> + <version>${icy-insubstantial.version}</version> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>micromanager</artifactId> - <version>1.9.0</version> + <version>${micromanager.version}</version> </dependency> </dependencies>