From bcdabd83c9f98442f360ef8da4f07c905c215402 Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville <stephane.dallongeville@pasteur.fr> Date: Fri, 22 Jul 2022 16:19:59 +0200 Subject: [PATCH] disabled javadoc errors and added .gitignore --- .gitignore | 4 ++++ pom.xml | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d5cae5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/target/ +.project +.settings/ +.classpath diff --git a/pom.xml b/pom.xml index 7f2e77c..74bdc3e 100644 --- a/pom.xml +++ b/pom.xml @@ -58,6 +58,23 @@ <build> <plugins> </plugins> + + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <!-- disable javadoc errors for substance (too many + errors and we don't care really) --> + <additionalOptions> + <additionalOption>-Xdoclint:none</additionalOption> + </additionalOptions> + </configuration> + </plugin> + + </plugins> + </pluginManagement> </build> <!-- List of project's dependencies --> @@ -68,6 +85,11 @@ <artifactId>icy-kernel</artifactId> </dependency> + <dependency> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>icy-bioformats</artifactId> + <version>6.9.1</version> + </dependency> </dependencies> <!-- Icy Maven repository (to find parent POM) --> -- GitLab