From 2b67a012d0b1eee9be1ed757076d1ae82ce4c166 Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville <stephane.dallongeville@pasteur.fr> Date: Thu, 19 May 2022 15:46:16 +0200 Subject: [PATCH] Clean up and replaced dependency by Icy library when possible --- pom.xml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index a257dc1..c8430b4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,16 @@ <parent> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>parent-pom-plugin</artifactId> - <version>1.0.3</version> + <version>1.0.6</version> </parent> + <artifactId>deep-learning-version-manager</artifactId> <version>1.0.0</version> + <name>Deep Learning versions manager for Icy</name> <description>This project holds the code for the TensorFlow library manager. It allows users to download, install and select the version of TensorFlow that other plugins use in Icy. </description> + <build> <plugins> <!--<plugin><groupId>org.codehaus.mojo</groupId><artifactId>exec-maven-plugin</artifactId><version>1.3.2</version><executions><execution><phase>install</phase><goals><goal>java</goal></goals></execution></executions><configuration><mainClass>icy.main.Icy</mainClass></configuration></plugin>--> @@ -25,20 +28,13 @@ </plugin> </plugins> </build> + <dependencies> - <dependency> - <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>ezplug</artifactId> - </dependency> - <dependency> - <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>protocols</artifactId> - </dependency> <!-- gson library for JSON parsing --> <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> - <version>2.8.6</version> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>google-gson</artifactId> + <version>2.9.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.tensorflow/tensorflow-core-api --> <!--<dependency> -- GitLab