<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>fr.ifremer.oceanotron</groupId>
		<artifactId>oceanotron</artifactId>
		<version>2.1-SNAPSHOT</version>
	</parent>
	<artifactId>oceanotron-businessUnit</artifactId>
	<packaging>jar</packaging>
	<name>Oceanotron businessUnit</name>
	<dependencies>
		<dependency>
			<groupId>fr.ifremer.oceanotron</groupId>
			<artifactId>oceanotron-core</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>commons-beanutils</groupId>
			<artifactId>commons-beanutils</artifactId>
		</dependency>

		<dependency>
			<groupId>org.geotoolkit</groupId>
			<artifactId>geotk-referencing</artifactId>
		</dependency>
		<dependency>
			<groupId>joda-time</groupId>
			<artifactId>joda-time</artifactId>
		</dependency>

		<dependency>
			<groupId>org.bushe</groupId>
			<artifactId>eventbus</artifactId>
		</dependency>
		
			
		<!-- used by NetCDFWithIndexFileStorageUnit (myOcean, OceanSites, ...) -->
		<!-- local hsql database requirement -->
		<dependency>
			<groupId>org.hsqldb</groupId>
			<artifactId>hsqldb</artifactId>
			<version>2.3.3</version> <!-- 2.2.6 > 2.3.3 -->
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-jdbc</artifactId>
			<version>7.0.28</version>
		</dependency>
		<!-- end local hsql database requirement -->
		<!-- netcdf api -->
		<dependency>
			<groupId>edu.ucar</groupId>
			<artifactId>netcdf</artifactId>
		</dependency>
		<!-- end netcdf api -->
		<!-- end NetCDFWithIndexFileStorageUnit (myOcean, OceanSites, ...) -->

		<!-- used for parametre code transformation (transformationBusinessParametersCodeTranslation) -->
		<dependency>
			<groupId>com.hp.hpl.jena</groupId>
			<artifactId>jena</artifactId>
			<version>2.6.2</version>
		</dependency>

		<!-- used for Q2/Surval storage unit (SurvalRDBMSToPointSeries) -->
		<dependency>
			<groupId>com.oracle</groupId>
			<artifactId>ojdbc14</artifactId>
			<version>10.2.0.5.0</version>
		</dependency>

		<!-- used for seadatanet storage Unit (SeadatanetToProfile) -->
		<dependency>
			<groupId>de.awi</groupId>
			<artifactId>odv4javaapi</artifactId>
  			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>org.beanshell</groupId>
			<artifactId>bsh</artifactId>
			<version>1.3.0</version>
		</dependency>


		<!-- for test management -->
		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<!-- <version>6.1.1</version> -->
		</dependency>
	</dependencies>
	<properties>
		<dataSource.name>jdbc/${application.id}</dataSource.name>
		<dataSource>java:/${dataSource.name}</dataSource>

		<!-- Database directory. -->
		<!-- <oceanotron.manager.db.dir>${user.home}/${application.id}/db</oceanotron.manager.db.dir> -->
		<!-- <oceanotron.manager.db.dir>${basedir}/target/${application.id}/db</oceanotron.manager.db.dir> -->
		<oceanotron.manager.db.dir>dir.db/${application.id}/db</oceanotron.manager.db.dir>

	</properties>

</project>