<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.scijava</groupId>
		<artifactId>pom-scijava</artifactId>
		<version>44.0.0</version>
		<relativePath />
	</parent>

	<artifactId>scripting-groovy</artifactId>
	<version>1.0.1</version>

	<name>SciJava Scripting: Groovy</name>
	<description>JSR-223-compliant Groovy scripting language plugin.</description>
	<url>https://github.com/scijava/scripting-groovy</url>
	<inceptionYear>2014</inceptionYear>
	<organization>
		<name>SciJava</name>
		<url>https://scijava.org/</url>
	</organization>
	<licenses>
		<license>
			<name>Simplified BSD License</name>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>ctrueden</id>
			<name>Curtis Rueden</name>
			<url>https://imagej.net/people/ctrueden</url>
			<roles>
				<role>founder</role>
				<role>lead</role>
				<role>developer</role>
				<role>debugger</role>
				<role>reviewer</role>
				<role>support</role>
				<role>maintainer</role>
			</roles>
		</developer>
	</developers>
	<contributors>
		<contributor>
			<name>Mark Hiner</name>
			<url>https://imagej.net/people/hinerm</url>
			<properties><id>hinerm</id></properties>
		</contributor>
		<contributor>
			<name>Sundararajan Athijegannathan</name>
			<organization>Sun Microsystems</organization>
		</contributor>
		<contributor>
			<name>Mike Grogan</name>
			<organization>Sun Microsystems</organization>
		</contributor>
	</contributors>

	<mailingLists>
		<mailingList>
			<name>SciJava</name>
			<subscribe>https://groups.google.com/group/scijava</subscribe>
			<unsubscribe>https://groups.google.com/group/scijava</unsubscribe>
			<post>scijava@googlegroups.com</post>
			<archive>https://groups.google.com/group/scijava</archive>
		</mailingList>
	</mailingLists>

	<scm>
		<connection>scm:git:https://github.com/scijava/scripting-groovy</connection>
		<developerConnection>scm:git:git@github.com:scijava/scripting-groovy</developerConnection>
		<tag>scripting-groovy-1.0.1</tag>
		<url>https://github.com/scijava/scripting-groovy</url>
	</scm>
	<issueManagement>
		<system>GitHub Issues</system>
		<url>https://github.com/scijava/scripting-groovy/issues</url>
	</issueManagement>
	<ciManagement>
		<system>GitHub Actions</system>
		<url>https://github.com/scijava/scripting-groovy/actions</url>
	</ciManagement>

	<properties>
		<scijava.jvm.version>8</scijava.jvm.version>

		<package-name>org.scijava.plugins.scripting.groovy</package-name>
		<main-class>org.scijava.plugins.scripting.groovy.Main</main-class>

		<license.licenseName>bsd_2</license.licenseName>
		<license.copyrightOwners>SciJava developers.</license.copyrightOwners>
		<license.excludes>**/script_templates/**</license.excludes>

		<gpars.version>1.2.1</gpars.version>
	</properties>

	<dependencies>
		<!-- SciJava dependencies -->
		<dependency>
			<groupId>org.scijava</groupId>
			<artifactId>scijava-common</artifactId>
		</dependency>

		<!-- Third-party dependencies -->
		<dependency>
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy</artifactId>
			<version>${org.apache.groovy.groovy.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy-jsr223</artifactId>
			<version>${org.apache.groovy.groovy-jsr223.version}</version>
		</dependency>
		<dependency>
			<!-- NB: Useful for working with dates. -->
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy-dateutil</artifactId>
			<version>${org.apache.groovy.groovy-dateutil.version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<!-- NB: Useful for JSON support. -->
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy-json</artifactId>
			<version>${org.apache.groovy.groovy-json.version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<!-- NB: Useful for building Swing UI. -->
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy-swing</artifactId>
			<version>${org.apache.groovy.groovy-swing.version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<!-- NB: Useful for template support. -->
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy-templates</artifactId>
			<version>${org.apache.groovy.groovy-templates.version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<!-- NB: Useful for XML support. -->
			<groupId>org.apache.groovy</groupId>
			<artifactId>groovy-xml</artifactId>
			<version>${org.apache.groovy.groovy-xml.version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<!-- NB: Needed for Groovy Grape. -->
			<groupId>org.apache.ivy</groupId>
			<artifactId>ivy</artifactId>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<!-- NB: Useful for parallelization. -->
			<groupId>org.codehaus.gpars</groupId>
			<artifactId>gpars</artifactId>
			<version>${gpars.version}</version>
			<scope>runtime</scope>
		</dependency>

		<!-- Test dependencies -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.scijava</groupId>
			<artifactId>scijava-common</artifactId>
			<classifier>tests</classifier>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
