<?xml version="1.0" encoding="UTF-8"?>
<project>
  <modelVersion>4.0.0</modelVersion>
  <name>JBoss jBPM3 - Report Server</name>
  <groupId>org.jbpm</groupId>
  <artifactId>report-server</artifactId>
  <packaging>war</packaging>

  <!-- Parent -->
  <parent>
    <groupId>org.jbpm</groupId>
    <artifactId>report-parent</artifactId>
    <version>1.0.0.Beta1</version>
    <relativePath>../pom.xml</relativePath>
  </parent>


  <!--  Dependencies -->
  <dependencies>

    <dependency>
      <groupId>org.jbpm</groupId>
      <artifactId>report-core</artifactId>
      <version>${version}</version>
    </dependency>
    <dependency>
      <groupId>org.jboss.resteasy</groupId>
      <artifactId>resteasy-jaxrs</artifactId>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <scope>provided</scope>
    </dependency>

  </dependencies>

  <!-- Plugins -->
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>

    <finalName>report-server</finalName>
  </build>
</project>
