<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright 2009-2012 The Kuali Foundation

    Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php

    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.kuali.pom</groupId>
    <artifactId>kuali-maven</artifactId>
    <version>1.3.19</version>
  </parent>
  <groupId>org.kuali.maven.plugins</groupId>
  <artifactId>properties-maven-plugin</artifactId>
  <version>1.3.2</version>
  <packaging>maven-plugin</packaging>
  <url>http://${kuali.site.hostname}/maven/plugins/${project.artifactId}/${project.version}</url>
  <name>Properties Maven Plugin</name>
  <inceptionYear>2009</inceptionYear>
  <description> 
    The Properties Maven Plugin is here to make life a little easier when dealing
    with properties. It provides goals to read and write properties from files.
    The Kuali version of this plugin adds support for loading properties from XML files and reading properties files from any 
    location Spring resource loading can understand (eg classpath:myprops.properties)
  </description>
  <scm>
    <connection>scm:svn:http://svn.kuali.org/repos/foundation/tags/properties-maven-plugin-1.3.2</connection>
    <developerConnection>scm:svn:http://svn.kuali.org/repos/foundation/tags/properties-maven-plugin-1.3.2</developerConnection>
    <url>http://svn.kuali.org/repos/foundation/tags/properties-maven-plugin-1.3.2</url>
  </scm>
  <developers>
    <developer>
      <id>arsenalist</id>
      <name>Zarar Siddiqi</name>
      <email>zarars@gmail.com</email>
      <url>http://arsenalist.com/tech</url>
    </developer>
    <developer>
      <id>krystian</id>
      <name>Krystian Nowak</name>
      <email>Krystian.Nowak@gmail.com</email>
    </developer>
    <developer>
      <id>jcaddel</id>
      <name>Jeff Caddel</name>
      <email>jcaddel@kuali.org</email>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.jasypt</groupId>
      <artifactId>jasypt</artifactId>
      <version>1.9.0</version>
    </dependency>
    <dependency>
      <groupId>org.kuali.maven.common</groupId>
      <artifactId>maven-kuali-common</artifactId>
      <version>1.2.8</version>
    </dependency>
  </dependencies>
  <build>
    <testResources>
      <testResource>
        <directory>src/test/resources</directory>
        <filtering>true</filtering>
        <includes>
          <include>pom*.xml</include>
        </includes>
      </testResource>
      <testResource>
        <directory>src/test/resources</directory>
        <filtering>false</filtering>
        <excludes>
          <exclude>pom*.xml</exclude>
        </excludes>
      </testResource>
    </testResources>
  </build>
</project>
