<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>maven-validator</groupId>
  <artifactId>maven-xhtml-plugin</artifactId>
  <name>Maven xhtml Plug-in</name>
  <version>1.2</version>
  <description>${pom.name} validates the xhtml code in project documentation and generates a report with the details 
    of all the errors found.</description>
  <url>http://maven-validator.sourceforge.net</url>
  <issueManagement>
    <url>http://sourceforge.net/tracker/?group_id=${maven.sourceforge.project.groupId}</url>
  </issueManagement>
  <inceptionYear>2003</inceptionYear>
  <developers>
    <developer>
      <id>fgiust</id>
      <name>Fabrizio Giustina</name>
      <email>fgiust(at)users.sourceforge.net</email>
      <organization>Sourceforge</organization>
      <roles>
        <role>Project admin</role>
        <role>Developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.5.3-1</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xerces</artifactId>
      <version>2.4.0</version>
    </dependency>
    <dependency>
      <groupId>xalan</groupId>
      <artifactId>xalan</artifactId>
      <version>2.3.1</version>
    </dependency>
    <dependency>
      <groupId>dom4j</groupId>
      <artifactId>dom4j</artifactId>
      <version>1.4</version>
    </dependency>
  </dependencies>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <reports>
    <plugins>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>license</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>changes</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>javadoc</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>pmd</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>jxr</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>statcvs</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>linkcheck</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>xhtml</artifactId>
        <version>1.0-SNAPSHOT</version>
        <goals>
          <goal>
            <id>report</id>
          </goal>
        </goals>
      </plugin>
    </plugins>
  </reports>
  <scm>
    <connection>scm:cvs:pserver:anonymous@cvs.sourceforge.net:/cvsroot/${pom.groupId}:maven-sitevalidator-plugin</connection>
    <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/${pom.groupId}:maven-sitevalidator-plugin</developerConnection>
    <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/${pom.groupId}/maven-sitevalidator-plugin/</url>
  </scm>
  <build>
    <sourceDirectory>${basedir}/src/main</sourceDirectory>
    <resources>
      <resource>
        <directory>${basedir}</directory>
        <includes>
          <include>plugin.jelly</include>
          <include>plugin.properties</include>
          <include>project.properties</include>
          <include>project.xml</include>
        </includes>
      </resource>
      <resource>
        <targetPath>plugin-resources</targetPath>
        <directory>${basedir}/src/plugin-resources</directory>
        <includes>
          <include>**/*.*</include>
        </includes>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <groupId>maven</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>1.0-SNAPSHOT</version>
        <configuration>
          <excludes>
            <exclude>**/*~</exclude>
            <exclude>**/#*#</exclude>
            <exclude>**/.#*</exclude>
            <exclude>**/%*%</exclude>
            <exclude>**/._*</exclude>
            <exclude>**/CVS</exclude>
            <exclude>**/CVS/**</exclude>
            <exclude>**/.cvsignore</exclude>
            <exclude>**/SCCS</exclude>
            <exclude>**/SCCS/**</exclude>
            <exclude>**/vssver.scc</exclude>
            <exclude>**/.svn</exclude>
            <exclude>**/.svn/**</exclude>
            <exclude>**/.DS_Store</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <organization>
    <name>sourceforge</name>
    <url>http://sourceforge.net</url>
  </organization>
  <distributionManagement>
    <repository>
      <id>default</id>
      <name>Default Repository</name>
      <url>file://http://sourceforge.net/project/showfiles.php?group_id=${maven.sourceforge.project.groupId}</url>
    </repository>
    <site>
      <id>default</id>
      <name>Default Site</name>
      <url>scp://${pom.groupId}.sourceforge.net//home/groups/m/ma/maven-validator/htdocs</url>
    </site>
  </distributionManagement>
</project>