<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>
    <artifactId>open-source-parent</artifactId>
    <groupId>com.basistech</groupId>
    <version>0.1.2</version>
  </parent>
  <artifactId>auto-version-maven-extension</artifactId>
  <version>0.0.1</version>

  <name>auto-version-maven-extension</name>

  <description>An extension, intended for use with Maven &gt; 3.3.9, that set a property for use in the version.
 </description>
  <scm>
    <connection>scm:git:git@github.com:basis-technology-corp/auto-version-maven-extension.git</connection>
    <developerConnection>scm:git:git@github.com:basis-technology-corp/auto-version-maven-extension.git</developerConnection>
    <tag>auto-version-maven-extension-0.0.1</tag>
  </scm>
  <distributionManagement>
    <site>
      <id>site</id>
      <url>scm:git:git@github.com:basis-technology-corp/auto-version-maven-extension.git</url>
    </site>
  </distributionManagement>
  <url>http://basis-technology-corp.github.io/auto-version-maven-extension</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.plexus</groupId>
        <artifactId>plexus-component-metadata</artifactId>
        <version>1.5.5</version>
        <executions>
          <execution>
            <goals>
              <goal>generate-metadata</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
      <version>3.3.9</version>
    </dependency>

    <!-- dependency for plexus annotation -->
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-component-annotations</artifactId>
      <version>1.5.5</version>
      <exclusions>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.12</version>
    </dependency>
  </dependencies>
</project>
