<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright 2007-2012 Hippo.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<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>org.onehippo.jcr.console</groupId>
    <artifactId>hippo-jcr-console</artifactId>
    <version>1.01.00</version>
  </parent>

  <name>Hippo JCR Console Dependencies</name>
  <description>Hippo JCR Console Application dependencies</description>
  <artifactId>hippo-jcr-console-dependencies</artifactId>

  <packaging>pom</packaging>

  <dependencies>
    <dependency>
      <groupId>org.onehippo.jcr.console</groupId>
      <artifactId>hippo-jcr-console-api</artifactId>
    </dependency>

    <dependency>
      <groupId>org.onehippo.jcr.console</groupId>
      <artifactId>hippo-jcr-console-engine</artifactId>
    </dependency>

    <dependency>
      <groupId>org.onehippo.jcr.console</groupId>
      <artifactId>hippo-jcr-console-plugins</artifactId>
    </dependency>

    <dependency>
      <groupId>org.onehippo.jcr.console</groupId>
      <artifactId>hippo-jcr-console-skin</artifactId>
    </dependency>

    <dependency>
      <groupId>org.onehippo.jcr</groupId>
      <artifactId>hippo-jcr-repository-service</artifactId>
    </dependency>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>jstl</artifactId>
    </dependency>

    <dependency>
      <groupId>taglibs</groupId>
      <artifactId>standard</artifactId>
    </dependency>

    <!-- Spring Framework -->

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context-support</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-jdbc</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-tx</artifactId>
    </dependency>

    <!-- Spring Security -->

    <dependency>
      <groupId>org.springframework.security</groupId>
      <artifactId>spring-security-core</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.security</groupId>
      <artifactId>spring-security-web</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.security</groupId>
      <artifactId>spring-security-config</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.security</groupId>
      <artifactId>spring-security-taglibs</artifactId>
    </dependency>

    <!-- jcr dependency *must* be provided by the container  through a shared classpath (e.g. $TOMCAT/lib) -->
                  <dependency>
                    <groupId>javax.jcr</groupId>
                    <artifactId>jcr</artifactId>
                    <scope>provided</scope>
                  </dependency>

    <!-- following dependencies are expected to be provided by the container through a shared classpath (e.g. $TOMCAT/lib)
         or alternatively can be bundled with the application (only when they are *not* on a shared classpath) -->
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <scope>provided</scope>
      </dependency>
        <dependency>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-log4j12</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>jcl-over-slf4j</artifactId>
          <scope>provided</scope>
        </dependency>

  </dependencies>

</project>
