From 4375afd5ef26183d4f34e13e3e9da7b51a90500e Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville <stephane.dallongeville@pasteur.fr> Date: Thu, 19 May 2022 15:53:21 +0200 Subject: [PATCH] cleanup + fixed dependencies --- pom.xml | 122 ++++++++++++++++++++++++++++++++------------------------ 1 file changed, 69 insertions(+), 53 deletions(-) diff --git a/pom.xml b/pom.xml index e9665b8..217d972 100644 --- a/pom.xml +++ b/pom.xml @@ -1,56 +1,72 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>parent-pom-plugin</artifactId> - <version>1.0.3</version> - </parent> - <artifactId>tensor-flow-1-interface</artifactId> - <version>1.0.0-SNAPSHOT</version> - <name>TensorFlow interface for Icy</name> - <description>This project holds the code allowing the interaction between Icy and TensorFlow. +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>parent-pom-plugin</artifactId> + <version>1.0.6</version> + </parent> + + <artifactId>tensor-flow-1-interface</artifactId> + <version>1.0.0-SNAPSHOT</version> + + <name>TensorFlow interface for Icy</name> + <description>This project holds the code allowing the interaction between Icy and TensorFlow. </description> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <additionalOptions> - <additionalOption>-Xdoclint:none</additionalOption> - </additionalOptions> - </configuration> - </plugin> - </plugins> - </build> - <dependencies> - <dependency> - <groupId>org.tensorflow</groupId> - <artifactId>tensorflow</artifactId> - <version>1.15.0</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>com.google.protobuf</groupId> - <artifactId>protobuf-java</artifactId> - <version>3.2.0</version> - </dependency> - <dependency> - <groupId>org.tensorflow</groupId> - <artifactId>proto</artifactId> - <version>1.15.0</version> - </dependency> - <dependency> - <groupId>ai.djl</groupId> - <artifactId>api</artifactId> - <version>0.15.0</version> - </dependency> - </dependencies> - <repositories> - <repository> - <id>icy</id> - <url>https://icy-nexus.pasteur.fr/repository/Icy/</url> - </repository> - </repositories> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <additionalOptions> + <additionalOption>-Xdoclint:none</additionalOption> + </additionalOptions> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>dl-model-runner</artifactId> + <version>1.0.0</version> + </dependency> + <dependency> + <groupId>org.tensorflow</groupId> + <artifactId>tensorflow</artifactId> + <version>1.15.0</version> + <scope>provided</scope> + </dependency> +<!-- <dependency> --> +<!-- <groupId>com.google.protobuf</groupId> --> +<!-- <artifactId>protobuf-java</artifactId> --> +<!-- <version>3.2.0</version> --> +<!-- </dependency> --> +<!-- <dependency> --> +<!-- <groupId>org.tensorflow</groupId> --> +<!-- <artifactId>proto</artifactId> --> +<!-- <version>1.15.0</version> --> +<!-- </dependency> --> +<!-- <dependency> --> +<!-- <groupId>ai.djl</groupId> --> +<!-- <artifactId>api</artifactId> --> +<!-- <version>0.15.0</version> --> +<!-- </dependency> --> +<!-- <dependency> --> +<!-- <groupId>org.nd4j</groupId> --> +<!-- <artifactId>nd4j-api</artifactId> --> +<!-- <version>1.0.0-M2</version> --> +<!-- </dependency> --> + </dependencies> + <repositories> + <repository> + <id>icy</id> + <url>https://icy-nexus.pasteur.fr/repository/Icy/</url> + </repository> + </repositories> </project> \ No newline at end of file -- GitLab