diff --git a/pom.xml b/pom.xml index 2c74f79427993cccef7f84f063a563454e0b03af..e90eddbff19a9c94c1dad306f05b5f5a52e8db6b 100644 --- a/pom.xml +++ b/pom.xml @@ -5,9 +5,9 @@ <modelVersion>4.0.0</modelVersion> <parent> + <artifactId>pom-icy</artifactId> <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>parent-pom-plugin</artifactId> - <version>1.0.3</version> + <version>2.0.0</version> </parent> <artifactId>spot-detection-utilities</artifactId> @@ -16,7 +16,43 @@ <packaging>jar</packaging> <name>Detection Utilities</name> + + <profiles> + <profile> + <id>icy-plugin</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + </profiles> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <overview>${basedir}/src/main/javadoc/overview.html</overview> + <stylesheetfile>${basedir}/src/main/javadoc/java7doc.css</stylesheetfile> + <!-- disable javadoc errors for substance library (too many, and we don't care really) --> + <additionalOptions> + <additionalOption>-Xdoclint:none</additionalOption> + </additionalOptions> + </configuration> + </plugin> + </plugins> + </build> + <!-- List of project's dependencies --> + <dependencies> + <!-- The core of Icy --> + <dependency> + <groupId>org.bioimageanalysis.icy</groupId> + <artifactId>icy-kernel</artifactId> + <version>${icy-kernel.version}</version> + </dependency> + </dependencies> + <repositories> <repository> <id>icy</id>