<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
  <pomVersion>3</pomVersion>
  <id>aspectj-test</id>
  <groupId>test</groupId>
  <artifactId>aspectj-test</artifactId>
  <name>Test Project for AspectJ/Clover integration</name>
  <currentVersion>1.0-SNAPSHOT</currentVersion>
  <inceptionYear>2006</inceptionYear>
  <dependencies>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.8</version>
    </dependency>
    <dependency>
      <groupId>aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
      <version>1.5.0</version>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src/main/java</sourceDirectory>
    <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
    <aspectSourceDirectory>src/main/aspectj</aspectSourceDirectory>
    <resources>
      <resource>
        <directory>src/main/resources</directory>
      </resource>
    </resources>
    <unitTest>
      <includes>
        <include>**/*Test.java</include>
      </includes>
    </unitTest>
  </build>
  <reports>
		<report>maven-junit-report-plugin</report>
		<report>maven-clover-plugin</report>
	</reports>
</project>
