<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">

  <parent>
    <artifactId>devtools</artifactId>
    <groupId>eu.cedarsoft</groupId>
    <version>1.1</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>eu.cedarsoft.devtools</groupId>
  <artifactId>devtools</artifactId>
  <name>devTools</name>
  <version>1.1</version>

  <description>Cedarsoft DevTools</description>

  <dependencies>
    <dependency>
      <groupId>eu.cedarsoft.devtools</groupId>
      <artifactId>core</artifactId>
    </dependency>

    <dependency>
      <groupId>eu.cedarsoft.devtools</groupId>
      <artifactId>maven</artifactId>
    </dependency>
    <dependency>
      <groupId>eu.cedarsoft.devtools</groupId>
      <artifactId>subversion</artifactId>
    </dependency>

    <!--<dependency>-->
      <!--<groupId>eu.cedarsoft.devtools</groupId>-->
      <!--<artifactId>core</artifactId>-->
      <!--<type>test-jar</type>-->
      <!--<scope>test</scope>-->
    <!--</dependency>-->
  </dependencies>


  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>eu.cedarsoft.devtools.DevTools</mainClass>
            </manifest>
          </archive>

          <descriptors>
            <descriptor>src/assembly/src.xml</descriptor>
          </descriptors>
        </configuration>

        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>attached</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>
  </build>

  <distributionManagement>
    <site>
      <id>cedarsoftWeb</id>
      <url>scp://cedarsoft.org/var/customers/webs/jschneider/devtools.cedarsoft.org</url>
    </site>
  </distributionManagement>

  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jxr-maven-plugin</artifactId>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-changes-plugin</artifactId>
        <reportSets>
          <reportSet>
            <reports>
              <report>changes-report</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
      </plugin>

      <plugin>
        <artifactId>maven-clover-plugin</artifactId>
      </plugin>

    </plugins>
  </reporting>

</project>
