<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">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.codehaus.mojo.dbupgrade</groupId>
    <artifactId>dbupgrade</artifactId>
    <version>1.0-beta-1</version>
  </parent>

  <packaging>maven-plugin</packaging>

  <name>Maven Database Upgrade Plugin</name>

  <groupId>org.codehaus.mojo</groupId>
  <artifactId>dbupgrade-maven-plugin</artifactId>

  <inceptionYear>2010</inceptionYear>

  <dependencies>

    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-project</artifactId>
    </dependency>

    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
    </dependency>

    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-model</artifactId>
    </dependency>

    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-artifact</artifactId>
    </dependency>

    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
    </dependency>

    <dependency>
      <groupId>org.codehaus.mojo.dbupgrade</groupId>
      <artifactId>dbupgrade-core</artifactId>
    </dependency>

  </dependencies>

</project>
