<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>
  <groupId>org.ow2.orchestra</groupId>
  <artifactId>orchestra-modules</artifactId>
  <packaging>pom</packaging>
  
  <name>Orchestra :: Modules</name>

  <parent>
    <groupId>org.ow2.orchestra</groupId>
    <artifactId>orchestra-parent</artifactId>
    <version>4.2.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <modules>
    <module>common</module>
    <module>cxf</module> 
    <module>axis</module> 
  </modules>  

  <build>
    <plugins>
     <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <configuration>
          <findbugsXmlOutput>true</findbugsXmlOutput>
          <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
          <xmlOutput>true</xmlOutput>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <configuration>
          <configLocation>orchestra/checkstyle.xml</configLocation>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.ow2.orchestra</groupId>
            <artifactId>orchestra-build-tools</artifactId>
            <version>${project.version}</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>
</project>
