From 6b69a1181a7c7c4b8991f14d5bd6d06473508f03 Mon Sep 17 00:00:00 2001 From: Thomas <thomas.musset@pasteur.fr> Date: Thu, 30 Mar 2023 17:45:56 +0200 Subject: [PATCH] update pom parent --- pom.xml | 41 +++++------------------------------------ 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/pom.xml b/pom.xml index 26b0ce9..0cc37ce 100644 --- a/pom.xml +++ b/pom.xml @@ -7,13 +7,13 @@ <!-- Inherited Icy Parent POM --> <parent> <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>parent-pom-plugin</artifactId> - <version>1.0.6</version> + <artifactId>pom-icy</artifactId> + <version>2.2.0</version> </parent> <!-- Project Information --> <artifactId>google-gson</artifactId> - <version>2.9.0</version> + <version>3.0.0</version> <packaging>jar</packaging> @@ -54,46 +54,15 @@ <!-- Project properties --> <properties> - + <artifact-to-extract>gson</artifact-to-extract> </properties> - <!-- Project build configuration --> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>${project.artifactId}-fetch</id> - <phase>generate-sources</phase> - <goals> - <goal>unpack-dependencies</goal> - </goals> - <configuration> - <includeArtifactIds>gson</includeArtifactIds> - <outputDirectory>${project.build.outputDirectory}</outputDirectory> - <stripVersion>true</stripVersion> - <excludeTransitive>true</excludeTransitive> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - <!-- List of project's dependencies --> <dependencies> - <!-- The core of Icy --> - <dependency> - <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>icy-kernel</artifactId> - </dependency> - <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.9.0</version> + <version>2.10.1</version> </dependency> </dependencies> -- GitLab