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

<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.rice</groupId>
    <artifactId>rice-db</artifactId>
   <version>2601.0002</version>
  </parent>

  <artifactId>rice-xml</artifactId>

  <name>Rice Xml</name>

  <properties>
    <project.resources.dir>${project.basedir}/src/main/resources</project.resources.dir>
    <project.groupId.path>org/kuali/rice</project.groupId.path>
    <project.resources.filter.pattern>${project.groupId.path}/${project.artifactId}/spring/applicationContext.xml</project.resources.filter.pattern>
  </properties>

  <build>
    <resources>
      <resource>
        <directory>${project.resources.dir}</directory>
        <includes>
          <include>${project.resources.filter.pattern}</include>
        </includes>
        <filtering>true</filtering>
      </resource>
      <resource>
        <directory>${project.resources.dir}</directory>
        <excludes>
          <exclude>${project.resources.filter.pattern}</exclude>
        </excludes>
        <filtering>false</filtering>
      </resource>
    </resources>
  </build>

</project>