<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">

	<parent>
		<artifactId>maven-parent</artifactId>
		<groupId>org.gcube.tools</groupId>
		<version>1.0.0</version>
	</parent>
	
	
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.gcube.tools</groupId>
  <artifactId>release-toolkit</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  
  
  <build>
  	<plugins>
	  	<plugin>
		    <groupId>org.apache.maven.plugins</groupId>
		    <artifactId>maven-compiler-plugin</artifactId>
		    <version>2.0.2</version>
		    <configuration>
		        <source>1.5</source>
		        <target>1.5</target>
		    </configuration>
		</plugin>
  	  <plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-assembly-plugin</artifactId>
        <configuration>
        	<descriptors>
        		<descriptor>src/main/resources/assembly/bashcli.xml</descriptor>
        	</descriptors>
        </configuration>
		<executions>
			<execution>
				<id>bashcli</id>
				<phase>install</phase>
				<goals>
					<goal>single</goal>
				</goals>
			</execution>
		</executions>
  	  </plugin>
  	</plugins>
    <resources>
    	<resource>
    		<directory>src/main/resources/btrt</directory>
    		<includes>
    			<include>web.xml</include>
    		</includes>
    		<filtering>true</filtering>
    	</resource>
    </resources>
  </build>
  

  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
      <layout>default</layout>
    </repository>
  </repositories>
   
  <dependencies>
  	<dependency>
  		<groupId>log4j</groupId>
  		<artifactId>log4j</artifactId>
  		<version>1.2.15</version>
  		<exclusions>
		    <exclusion>
		      <groupId>javax.mail</groupId>
		      <artifactId>mail</artifactId>
		    </exclusion>
		    <exclusion>
		      <groupId>javax.jms</groupId>
		      <artifactId>jms</artifactId>
		    </exclusion>
		    <exclusion>
		      <groupId>com.sun.jdmk</groupId>
		      <artifactId>jmxtools</artifactId>
		    </exclusion>
		    <exclusion>
		      <groupId>com.sun.jmx</groupId>
		      <artifactId>jmxri</artifactId>
		    </exclusion>
		  </exclusions>
  	</dependency>
  	<dependency>
  		<groupId>com.thoughtworks.xstream</groupId>
  		<artifactId>xstream</artifactId>
  		<version>1.3.1</version>
  	</dependency>
  </dependencies>
</project>