<?xml version="1.0" encoding="UTF-8"?><project>
  <parent>
    <artifactId>spring-parent</artifactId>
    <groupId>org.springframework</groupId>
    <version>2.0-m2</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>spring-beans</artifactId>
  <name>Spring beans</name>
  <version>2.0-m2</version>
  <build>
    <resources>
      <resource>
        <directory>../../src</directory>
        <includes>
          <include>org/springframework/beans/**</include>
          <include>META-INF/**</include>
        </includes>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>../../test</directory>
        <includes>
          <include>org/springframework/beans/**</include>
        </includes>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <includes>
            <include>org/springframework/beans/**</include>
          </includes>
          <testIncludes>
            <include>org/springframework/beans/**</include>
            <include>org/springframework/util/comparator/ComparatorTests.java</include>
            <include>org/springframework/util/ObjectUtilsTests.java</include>
            <include>org/springframework/util/ReflectionUtilsTests.java</include>
            <include>org/springframework/util/SerializationTestUtils.java</include>
          </testIncludes>
          <testExcludes>
            <exclude>org/springframework/beans/factory/access/SingletonBeanFactoryLocatorTests.java</exclude>
            <exclude>org/springframework/beans/factory/config/ServiceLocatorFactoryBeanTests.java</exclude>
            <exclude>org/springframework/beans/factory/config/PropertyResourceConfigurerTests.java</exclude>
            <exclude>org/springframework/beans/factory/BeanFactoryUtilsTests.java</exclude>
            <exclude>org/springframework/beans/factory/xml/LookupMethodWrappedByCglibProxyTests.java</exclude>
            <exclude>org/springframework/beans/factory/config/BeanFactoryPostProcessorTests.java</exclude>
            <exclude>org/springframework/beans/factory/DefaultListableBeanFactoryTests.java</exclude>
            <exclude>org/springframework/beans/factory/xml/support/TestNamespaceHandler.java</exclude>
            <exclude>org/springframework/beans/factory/xml/support/CustomNamespaceHandlerTests.java</exclude>
            <exclude>org/springframework/beans/factory/xml/XmlBeanFactoryTests.java</exclude>
          </testExcludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>spring-core</artifactId>
      <version>2.0-m2</version>
    </dependency>
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>javax.mail</groupId>
      <artifactId>mail</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.sf.hibernate</groupId>
      <artifactId>hibernate</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>