Skip to content
Snippets Groups Projects
Commit 581ec89c authored by Amandine  TOURNAY's avatar Amandine TOURNAY
Browse files

Upgraded POM to latest version

parent e98571d3
No related branches found
No related tags found
No related merge requests found
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
<!-- Inherited Icy Parent POM --> <!-- Inherited Icy Parent POM -->
<parent> <parent>
<artifactId>pom-icy</artifactId>
<groupId>org.bioimageanalysis.icy</groupId> <groupId>org.bioimageanalysis.icy</groupId>
<artifactId>parent-pom-plugin</artifactId> <version>2.0.0</version>
<version>1.0.4</version> </parent>
</parent>
<!-- Project Information --> <!-- Project Information -->
<artifactId>opencv</artifactId> <artifactId>opencv</artifactId>
...@@ -55,48 +55,68 @@ ...@@ -55,48 +55,68 @@
<!-- Project properties --> <!-- Project properties -->
<properties> <properties>
<artifact-to-include>opencv</artifact-to-include>
</properties> </properties>
<!-- Project build configuration --> <profiles>
<build> <profile>
<plugins> <id>icy-plugin-extract-library</id>
<plugin> <activation>
<groupId>org.apache.maven.plugins</groupId> <activeByDefault>true</activeByDefault>
<artifactId>maven-dependency-plugin</artifactId> </activation>
<version>3.1.1</version> </profile>
<executions> </profiles>
<execution>
<id>${project.artifactId}-fetch</id> <build>
<phase>generate-sources</phase> <plugins>
<goals> <plugin>
<goal>unpack-dependencies</goal> <groupId>org.apache.maven.plugins</groupId>
</goals> <artifactId>maven-dependency-plugin</artifactId>
<configuration> <executions>
<includeArtifactIds>opencv</includeArtifactIds> <execution>
<outputDirectory>${project.build.outputDirectory}</outputDirectory> <id>${project.artifactId}-fetch</id>
<stripVersion>true</stripVersion> <phase>generate-sources</phase>
<excludeTransitive>true</excludeTransitive> <goals>
</configuration> <goal>unpack-dependencies</goal>
</execution> </goals>
</executions> <configuration>
</plugin> <includeArtifactIds>${artifact-to-include}</includeArtifactIds>
</plugins> <outputDirectory>${project.build.outputDirectory}</outputDirectory>
</build> <stripVersion>true</stripVersion>
<excludeTransitive>true</excludeTransitive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- List of project's dependencies --> <!-- List of project's dependencies -->
<dependencies> <dependencies>
<dependency>
<groupId>org.openpnp</groupId>
<artifactId>opencv</artifactId>
<version>4.5.1-2</version>
</dependency>
<!-- The core of Icy --> <!-- The core of Icy -->
<dependency> <dependency>
<groupId>org.bioimageanalysis.icy</groupId> <groupId>org.bioimageanalysis.icy</groupId>
<artifactId>icy-kernel</artifactId> <artifactId>icy-kernel</artifactId>
<version>${icy-kernel.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.openpnp</groupId> <groupId>org.bioimageanalysis.icy</groupId>
<artifactId>opencv</artifactId> <artifactId>ezplug</artifactId>
<version>4.5.1-2</version> <version>${ezplug.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>icy-bioformats</artifactId>
<version>${icy-bioformats.version}</version>
</dependency>
</dependencies> </dependencies>
<!-- Icy Maven repository (to find parent POM) --> <!-- Icy Maven repository (to find parent POM) -->
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment