You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
4.1 KiB
137 lines
4.1 KiB
<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.incenp</groupId> |
|
<artifactId>incenp-base</artifactId> |
|
<version>1.1.0</version> |
|
</parent> |
|
|
|
<groupId>org.incenp.imagej</groupId> |
|
<artifactId>incenp-plugins</artifactId> |
|
<version>0.9.2</version> |
|
<name>Incenp.org ImageJ Plugins</name> |
|
<description>Some plugins for ImageJ</description> |
|
<url>https://incenp.org/dvlpt/imagej-plugins/</url> |
|
|
|
<licenses> |
|
<license> |
|
<name>GPL-3.0-or-later</name> |
|
<url>https://www.gnu.org/licenses/gpl-3.0-standalone.html</url> |
|
<distribution>manual</distribution> |
|
<comments>GNU General Public License v3.0 or later</comments> |
|
</license> |
|
</licenses> |
|
|
|
<developers> |
|
<developer> |
|
<id>damien</id> |
|
<name>Damien Goutte-Gattat</name> |
|
<email>dgouttegattat@incenp.org</email> |
|
</developer> |
|
</developers> |
|
|
|
<scm> |
|
<connection>scm:git:https://git.incenp.org/damien/imagej-plugins.git</connection> |
|
<developerConnection>scm:git:ssh://git@git.incenp.org/damien/imagej-plugins.git</developerConnection> |
|
<url>https://git.incenp.org/damien/imagej-plugins</url> |
|
<tag>incenp-plugins-0.9.2</tag> |
|
</scm> |
|
|
|
<issueManagement> |
|
<system>Gitea</system> |
|
<url>https://git.incenp.org/damien/imagej-plugins/issues</url> |
|
</issueManagement> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>net.imagej</groupId> |
|
<artifactId>imagej</artifactId> |
|
<version>2.0.0-rc-71</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.imagej</groupId> |
|
<artifactId>imagej-legacy</artifactId> |
|
<version>0.35.0</version> |
|
</dependency> |
|
<dependency> |
|
<!-- For ImageJ2 plugin API --> |
|
<groupId>org.scijava</groupId> |
|
<artifactId>scijava-common</artifactId> |
|
<version>2.77.0</version> |
|
</dependency> |
|
<dependency> |
|
<!-- For util.opencsv --> |
|
<groupId>sc.fiji</groupId> |
|
<artifactId>VIB-lib</artifactId> |
|
<version>2.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<!-- For loci.plugins.BF --> |
|
<groupId>ome</groupId> |
|
<artifactId>bio-formats_plugins</artifactId> |
|
<version>6.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<!-- For fiji.threshold.Auto_Local_Threshold --> |
|
<groupId>sc.fiji</groupId> |
|
<artifactId>Auto_Local_Threshold</artifactId> |
|
<version>1.10.1</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>3.1.2</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-release-plugin</artifactId> |
|
<version>2.5.3</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-site-plugin</artifactId> |
|
<version>3.8.2</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-project-info-reports-plugin</artifactId> |
|
<version>3.0.0</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<reporting> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>3.1.1</version> |
|
</plugin> |
|
</plugins> |
|
</reporting> |
|
|
|
</project>
|
|
|