diff --git a/pom.xml b/pom.xml index 86deb570755d650180fe59eaaf34094d805b6c27..b3c5032cecbc6e96b02e4565cada5dfb6079867c 100644 --- a/pom.xml +++ b/pom.xml @@ -3,53 +3,121 @@ 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> + <parent> + <groupId>org.scijava</groupId> + <artifactId>pom-scijava</artifactId> + <version>31.1.0</version> + <relativePath /> + </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. + <version>1.0.0</version> + + <name>TensorFlow 1 engine for DL-model-runner</name> + <description>This project complements the DL-model runner acting as the engine that works loading models + and making inference with Java API for Tensorflow 1. </description> + <url>https://gitlab.pasteur.fr/bia/tensorflow-1-interface</url> + <inceptionYear>2022</inceptionYear> + <organization> + <name>Icy Bioimaging</name> + <url>https://icy.bioimageanalysis.org/</url> + </organization> + <licenses> + <license> + <name>BSD-3-Clause</name> + <url>https://opensource.org/licenses/BSD-3-Clause</url> + <distribution>repo</distribution> + </license> + </licenses> + <developers> + <developer> + <id>carlosuc3m</id> + <name>Carlos Javier Garcia Lopez de Haro</name> + <url>https://github.com/carlosuc3m</url> + <roles> + <role>developer</role> + <role>debugger</role> + <role>reviewer</role> + <role>support</role> + <role>maintainer</role> + </roles> + </developer> + <developer> + <id>tinevez</id> + <name>Jean-Yves Tinevez</name> + <url>https://github.com/tinevez</url> + <roles> + <role>developer</role> + <role>debugger</role> + <role>reviewer</role> + <role>support</role> + <role>maintainer</role> + </roles> + </developer> + <developer> + <id>Stephane-D</id> + <name>Stephane Dallongeville </name> + <url>https://github.com/Stephane-D</url> + <roles> + <role>developer</role> + <role>debugger</role> + <role>reviewer</role> + <role>support</role> + <role>maintainer</role> + </roles> + </developer> + <developer> + <id>danyfel80</id> + <name>Daniel Felipe González Obando</name> + <url>https://gitlab.pasteur.fr/danyfel80</url> + <roles> + <role>developer</role> + <role>debugger</role> + </roles> + </developer> + </developers> - <developers> - <developer> - <id>carlosuc3m</id> - <name>Carlos Garcia</name> - <roles> - <role>architect</role> - <role>developer</role> - <role>debugger</role> - <role>tester</role> - <role>maintainer</role> - <role>support</role> - </roles> - </developer> - </developers> - - <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> + <mailingLists> + <mailingList> + <name>Image.sc Forum</name> + <archive>https://forum.image.sc/tag/deeplearning-model-runner</archive> + </mailingList> + </mailingLists> + + <contributors> + <contributor> + <name>None</name> + </contributor> + </contributors> + + <scm> + <connection>scm:git:git://gitlab.pasteur.fr/bia/tensorflow-1-interface</connection> + <developerConnection>scm:git:git@gitlab.pasteur.fr:bia/tensorflow-1-interface</developerConnection> + <tag>HEAD</tag> + <url>https://gitlab.pasteur.fr/bia/tensorflow-1-interface</url> + </scm> + + <issueManagement> + <system>GitHub Issues</system> + <url>https://gitlab.pasteur.fr/bia/tensorflow-1-interface/-/issues</url> + </issueManagement> + <ciManagement> + <system>None</system> + </ciManagement> + + <properties> + <package-name>org.bioimageanalysis.icy.deeplearning.tensorflow.v1</package-name> + <main-class>org.bioimageanalysis.icy.deeplearning.tensorflow.v1.TensorFlowInterface</main-class> + <license.licenseName>BSD-3-Clause</license.licenseName> + <license.copyrightOwners>Institut Pasteur</license.copyrightOwners> + </properties> <dependencies> <dependency> <groupId>org.bioimageanalysis.icy</groupId> <artifactId>dl-model-runner</artifactId> - <version>1.0.1</version> + <version>1.0.0</version> </dependency> <dependency> <groupId>org.tensorflow</groupId> @@ -78,5 +146,9 @@ <id>icy</id> <url>https://icy-nexus.pasteur.fr/repository/Icy/</url> </repository> + <repository> + <id>scijava.public</id> + <url>https://maven.scijava.org/content/groups/public</url> + </repository> </repositories> </project> \ No newline at end of file