<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================= 
	Maven Project Configuration File GeoSolutions GeoBatch Project http://geobatch.codehaus.org 
	======================================================================= -->
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>it.geosolutions.geobatch</groupId>
    <artifactId>gb-actions</artifactId>
    <version>1.3-SNAPSHOT</version>
  </parent>
  <!-- =========================================================== -->
  <!-- Module Description -->
  <!-- =========================================================== -->
  <groupId>it.geosolutions.geobatch</groupId>
  <artifactId>gb-action-scripting</artifactId>
  <packaging>jar</packaging>
  <name>GeoBatch action: scripting</name>
  <description>GeoSolutions GeoBatch flow managers - Scripting</description>
  <url>http://www.geo-solutions.it/maven_reports/gb/flowmanagers/</url>
  <scm>
    <url>http://svn.geotools.org/geotools/trunk/gt/modules/flowmanagers/</url>
    <connection>scm:git:[fetch=]git@geosolutions.sourcerepo.com:geosolutions/geobatch.git[push=]git@geosolutions.sourcerepo.com:geosolutions/geobatch.git</connection>
  </scm>
  <licenses>
    <license>
      <name>Lesser General Public License (LGPL)</name>
      <url>http://www.gnu.org/copyleft/lesser.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <!-- =========================================================== -->
  <!-- -->
  <!-- =========================================================== -->
  <repositories>
    <repository>
      <id>mule-deps</id>
      <name>Mule Dependencies</name>
      <url>http://dist.codehaus.org/mule/dependencies/maven2</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>
  <dependencies>
    <!-- =========================================================== -->
    <!-- GeoBatch -->
    <!-- =========================================================== -->
    <dependency>
      <groupId>it.geosolutions.geobatch</groupId>
      <artifactId>gb-core-impl</artifactId>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.geobatch</groupId>
      <artifactId>gb-fs-catalog</artifactId>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.geobatch</groupId>
      <artifactId>gb-fsm-core</artifactId>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.geobatch</groupId>
      <artifactId>gb-core-model</artifactId>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.geobatch</groupId>
      <artifactId>gb-action-tools</artifactId>
    </dependency>
    <!-- =========================================================== -->
    <!-- -->
    <!-- =========================================================== -->
    <dependency>
      <groupId>javax.script</groupId>
      <artifactId>script-api</artifactId>
      <classifier>jdk14</classifier>
    </dependency>
    <dependency>
      <groupId>net.sf.retrotranslator</groupId>
      <artifactId>retrotranslator-runtime</artifactId>
    </dependency>

    <dependency>
      <groupId>javax.script</groupId>
      <artifactId>js-engine</artifactId>
    </dependency>
    <dependency>
      <groupId>rhino</groupId>
      <artifactId>js</artifactId>
    </dependency>
    <dependency>
      <groupId>javax.script</groupId>
      <artifactId>groovy-engine</artifactId>
      <classifier>jdk14</classifier> <!-- 1.4 ??-->
    </dependency>
    <dependency>
	<groupId>org.codehaus.groovy</groupId>
	<artifactId>groovy-all</artifactId>
    </dependency>

       <!-- jruby integration has to be reworked -->
<!--
        <dependency>
      <groupId>javax.script</groupId>
      <artifactId>jruby-engine</artifactId>
    </dependency>
    <dependency>
      <groupId>jruby</groupId>
      <artifactId>jruby</artifactId>
    </dependency>
-->
    <dependency>
      <groupId>javax.script</groupId>
      <artifactId>jython-engine</artifactId>
    </dependency>
    <dependency>
      <groupId>org.python</groupId>
      <artifactId>jython</artifactId>
    </dependency>
  </dependencies>
</project>
