<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  
  <artifactId>alfresco-rad</artifactId>
  <packaging>jar</packaging>

  <name>Rapid Application Development Support</name>
  <description>SDK module for Rapid Development support - allows remote unit testing and starts remote JUnit runner</description>

  <parent>
      <groupId>org.alfresco.maven</groupId>
      <artifactId>alfresco-sdk-aggregator</artifactId>
      <version>2.2.0</version>
      <relativePath>../../pom.xml</relativePath>
  </parent>

  <dependencies>
       <!-- Enables JUnit remote testing (using JRebel) -->
       <dependency>
            <groupId>com.tradeshift</groupId>
            <artifactId>junit-remote</artifactId>
            <version>3</version>
            <type>jar</type>
            <exclusions>
                <exclusion>
                    <artifactId>servlet-api</artifactId>
                    <groupId>javax.servlet</groupId>
                </exclusion>
            </exclusions>
       </dependency>

       <!-- Required to have annotation based remote testing working -->
       <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>3.2.14.RELEASE</version>
            <type>jar</type>
       </dependency>
  </dependencies>

</project>
