<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>com.healthmarketscience</groupId>
    <artifactId>openhms-parent</artifactId>
    <version>1.0.4</version>
  </parent>  
  <groupId>com.healthmarketscience.common</groupId>
  <artifactId>common-util</artifactId>
  <name>OpenHMS Common Utilities</name>
  <description>OpenHMS Common Utilities</description>
  <version>1.0.2</version>
  <url>http://openhms.sourceforge.net/common-util</url>
  <developers>
    <developer>
      <id>jahlborn</id>
      <name>James Ahlborn</name>
      <email>jahlborn@users.sf.net</email>
      <organization>Health Market Science</organization>
      <organizationUrl>www.healthmarketscience.com</organizationUrl>
      <timezone>-5</timezone>
    </developer>
    <developer>
      <id>mdelaurentis</id>
      <name>Mike DeLaurentis</name>
      <email>mdelaurentis@users.sf.net</email>
      <organization>Health Market Science</organization>
      <organizationUrl>www.healthmarketscience.com</organizationUrl>
      <timezone>-5</timezone>
    </developer>
    <developer>
      <name>Pete Michel</name>
      <organization>Health Market Science</organization>
      <organizationUrl>www.healthmarketscience.com</organizationUrl>
      <timezone>-5</timezone>
    </developer>
  </developers>
  <contributors>
    <contributor>
      <name>Eric Bernstein</name>
      <email>ebernstein@users.sf.net</email>
      <timezone>-5</timezone>
    </contributor>
    <contributor>
      <name>Rob DiMarco</name>
      <email>robdimarco@users.sf.net</email>
      <timezone>-5</timezone>
    </contributor>
    <contributor>
      <name>Tim McCune</name>
      <email>javajedi@users.sf.net</email>
    </contributor>
  </contributors>
  <scm>
    <connection>scm:svn:http://openhms.svn.sourceforge.net/svnroot/openhms/common-util/tags/rel_1_0_2</connection>
    <!-- read/write cvs connection -->
    <developerConnection>scm:svn:https://openhms.svn.sourceforge.net/svnroot/openhms/common-util/tags/rel_1_0_2</developerConnection>
    <url>http://openhms.svn.sourceforge.net/viewvc/openhms/common-util/tags/rel_1_0_2</url>
  </scm> 
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.3</version>
      </plugin>
    </plugins>    
  </build>
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-pmd-plugin</artifactId>
        <configuration>
          <aggregate>true</aggregate>
          <targetJdk>1.5</targetJdk>
          <!-- Use csv reports because unneeded and xml causes failures (bug in
pmd 3.9 with SuppressWarnings in source code) -->
          <format>csv</format>
        </configuration>
      </plugin> 
      <plugin>
      	<groupId>org.codehaus.mojo</groupId>
      	<artifactId>findbugs-maven-plugin</artifactId>
      	<configuration>
      	  <threshold>Normal</threshold>
      	  <effort>Default</effort>
          <excludeFilterFile>src/test/resources/findBugsExcludes.xml</excludeFilterFile>
      	</configuration>
      </plugin>
    </plugins>
  </reporting>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.0</version>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.0.4</version>
    </dependency>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.1</version>
    </dependency>
  </dependencies>
  <distributionManagement>
    <site>
      <id>openhms-build-site</id>
      <url>scp://shell.sourceforge.net/home/groups/o/op/openhms/htdocs/common-util</url>
    </site>
  </distributionManagement>    
</project>
