<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         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.scijava</groupId>
		<artifactId>pom-scijava</artifactId>
		<version>28.0.0-SNAPSHOT</version>
		<relativePath/>
	</parent>

	<groupId>de.mpicbg.scf</groupId>
	<artifactId>MinCostZSurface_</artifactId>
	<version>1.1.4</version>

	<name>MinCostZSurface_</name>
	<description>
		an IJ plugin detecting optimal z surface (surface for which z = f(x,y)) in a 3D volume. the method is described in:
		Kang Li et al., "Optimal surface segmentation in volumetric images - a Graph-theoretic approach", IEEE transactions on pattern analysis and machine intelligence, vol 28, n 1, 2006.</description>
	<url>none</url>
	<inceptionYear>2014</inceptionYear>
	<organization>
		<name>de.mpicbg.scf</name>
		<url>none</url>
	</organization>
	<licenses>
		<license>
			<name>BSD3</name>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<!-- See https://imagej.net/Team -->
		<developer>
			<id>Benoit</id>
			<name>Benoit Lombardot</name>
			<url>http://imagej.net/User:Benoit</url>
			<roles>
				<role>founder</role>
				<role>developer</role>
			</roles>
		</developer>
		<developer>
			<id>Moon</id>
			<name>HongKee Moon</name>
			<url>http://imagej.net/User:Moon</url>
			<roles>
				<role>founder</role>
				<role>developer</role>
			</roles>
		</developer>
	</developers>
	<contributors>
		<contributor>
			<name>none</name>
		</contributor>
	</contributors>

	<mailingLists>
		<mailingList>
			<name>none</name>
			<archive>none</archive>
		</mailingList>
	</mailingLists>

	 <scm>
        <url>none</url>
    </scm>
    <issueManagement>
        <system>None</system>
    </issueManagement>
    <ciManagement>
        <system>None</system>
    </ciManagement>



	<properties>
		<package-name>mincostsurface</package-name>
		<main-class>de.mpicg.scf.mincostsurface.MinCostZSurface_Plugin</main-class>
		<license.licenseName>BSD3</license.licenseName>
		<license.copyrightOwners>MPI-CBG</license.copyrightOwners>
	</properties>


	<repositories>
		<repository>
			<id>imagej.public</id>
			<url>http://maven.imagej.net/content/groups/public</url>
		</repository>
	</repositories>


	<dependencies>
		
		<dependency>
			<groupId>net.imagej</groupId>
			<artifactId>imagej</artifactId>
		</dependency>
		
		<dependency>
			<groupId>net.imglib2</groupId>
			<artifactId>imglib2-algorithm</artifactId>
		</dependency>
		
		<dependency>
			<groupId>sc.fiji</groupId>
			<artifactId>Graph_Cut</artifactId>
		</dependency>
		
	</dependencies>
	
	
	
</project>