<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.0.4-SNAPSHOT</version>
    </parent>
    <artifactId>oceanotron-core</artifactId>
    <packaging>jar</packaging>
    <name>Oceanotron Core Business Tier</name>
    <dependencies>
<!--     <dependency> -->
<!-- 			<groupId>fr.ifremer.oceanotron</groupId> -->
<!-- 			<artifactId>oceanotron-manager</artifactId> -->
<!-- 			<version>${project.version}</version> -->
<!-- 		</dependency> -->
        <dependency>
			<groupId>fr.ifremer.oceanotron</groupId>
			<artifactId>oceanotron-vo</artifactId>
			<version>${project.version}</version>
		</dependency>
        <dependency>
			<groupId>fr.ifremer.oceanotron</groupId>
			<artifactId>dataset</artifactId>
			<version>1.1</version>
		</dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring</artifactId>
        </dependency>
        <!-- 
        <dependency>
            <groupId>aopalliance</groupId>
            <artifactId>aopalliance</artifactId>
        </dependency>
         -->
        <!-- 
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-core</artifactId>
        </dependency>
         -->
         <!-- 
        <dependency>
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
        </dependency>
         -->
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
        </dependency>
       
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
        </dependency>
      
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
        </dependency>
        <!-- 
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
        </dependency>
         -->
         <!-- 
        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-jdbc</artifactId>
            <version>7.0.28</version>
        </dependency>
        <dependency>
        	<groupId>essi-unidata</groupId>
        	<artifactId>netcdf-java</artifactId>
        </dependency>
         -->
         
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
        <!-- 
        <dependency>
            <groupId>com.hp.hpl.jena</groupId>
            <artifactId>jena</artifactId>
        </dependency>
         -->
         	<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<!--  <version>6.1.1</version>-->
		</dependency>
    </dependencies>
    <build>
	<resources>
		<resource>
			<directory>src/main</directory>
			<excludes>
				<exclude>**/*.java</exclude>
					<exclude>**/resources/*.*</exclude>
			</excludes>
		</resource>
		<resource>
			<directory>src/main/resources</directory>
		</resource>

	</resources>
</build>

  <!-- 
    <profiles>
     -->
        <!-- This profile here will allow you to specify -Ddeploy.target=tomcat in order deploy a war in Tomcat. -->
        <!-- 
        <profile>
            <id>tomcat</id>
            <activation>
                <property>
                    <name>deploy.target</name>
                    <value>tomcat</value>
                </property>
            </activation>
             -->
            <properties>
                <packaging>jar</packaging>                 
            </properties>
             <!--
        </profile>
    </profiles>
         -->
        
        
</project>