<?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>open</artifactId>
    <groupId>eu.cedarsoft</groupId>
    <version>1.1</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>eu.cedarsoft</groupId>
  <artifactId>devtools</artifactId>
  <name>devTools Master</name>
  <version>1.1</version>
  <url>http://devtools.cedarsoft.org</url>
  <packaging>pom</packaging>

  <description>Development Tools Master</description>

  <licenses>
    <license>
      <name>GLPv3</name>
      <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
    </license>
  </licenses>

  <organization>
    <name>Cedarsoft</name>
    <url>http://cedarsoft.eu</url>
  </organization>

  <developers>
    <developer>
      <id>jschneider</id>
      <name>Johannes Schneider</name>
      <email>js@cedarsoft.eu</email>
      <roles>
        <role>architect</role>
        <role>developer</role>
        <role>admin</role>
      </roles>
      <timezone>2</timezone>
      <url>http://johannes-schneider.info</url>
      <organization>cedarsoft</organization>
      <organizationUrl>http://www.cedarsoft.eu</organizationUrl>
    </developer>
  </developers>

  <ciManagement>
    <url>http://build.cedarsoft.de:8111/viewType.html?buildTypeId=bt1</url>
  </ciManagement>

  <scm>
    <connection>scm:svn:https://svn.cedarsoft.eu/open/eu.cedarsoft.devtools/tags/devtools-1.1</connection>
    <developerConnection>scm:svn:https://svn.cedarsoft.eu/open/eu.cedarsoft.devtools/tags/devtools-1.1</developerConnection>
  </scm>

  <properties>
    <cedarsoft.utils.version>1.1</cedarsoft.utils.version>
    <svnkit.version>1.1.0</svnkit.version>
  </properties>

  <dependencyManagement>
    <dependencies>
      <!-- Internal -->
      <dependency>
        <groupId>eu.cedarsoft.devtools</groupId>
        <artifactId>core</artifactId>
        <version>${pom.version}</version>
      </dependency>
      <dependency>
        <groupId>eu.cedarsoft.devtools</groupId>
        <artifactId>core</artifactId>
        <type>test-jar</type>
        <version>${pom.version}</version>
      </dependency>
      <dependency>
        <groupId>eu.cedarsoft.devtools</groupId>
        <artifactId>maven</artifactId>
        <version>${pom.version}</version>
      </dependency>
      <dependency>
        <groupId>eu.cedarsoft.devtools</groupId>
        <artifactId>subversion</artifactId>
        <version>${pom.version}</version>
      </dependency>

      <dependency>
        <groupId>eu.cedarsoft.utils</groupId>
        <artifactId>cmd</artifactId>
        <version>${cedarsoft.utils.version}</version>
      </dependency>
      <dependency>
        <groupId>eu.cedarsoft.utils</groupId>
        <artifactId>common</artifactId>
        <version>${cedarsoft.utils.version}</version>
      </dependency>
      <dependency>
        <groupId>eu.cedarsoft.utils</groupId>
        <artifactId>configuration</artifactId>
        <version>${cedarsoft.utils.version}</version>
      </dependency>

      <dependency>
        <groupId>com.svnkit</groupId>
        <artifactId>svnkit</artifactId>
        <version>${svnkit.version}</version>
      </dependency>
      <dependency>
        <groupId>com.svnkit</groupId>
        <artifactId>svnkit-cli</artifactId>
        <version>${svnkit.version}</version>
      </dependency>

      <dependency>
        <groupId>commons-configuration</groupId>
        <artifactId>commons-configuration</artifactId>
        <version>1.4</version>
      </dependency>

      <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.3.1</version>
      </dependency>

      <!-- Guice -->
      <dependency>
        <groupId>com.google.code.guice</groupId>
        <artifactId>guice</artifactId>
        <version>1.0</version>
      </dependency>

    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>com.google.code.guice</groupId>
      <artifactId>guice</artifactId>
    </dependency>
  </dependencies>

  <modules>
    <module>core</module>
    <module>subversion</module>
    <module>maven</module>
    <module>devtools</module>
  </modules>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
