<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jenkins-ci.plugins</groupId>
    <artifactId>plugin</artifactId>
    <version>2.11</version>
    <relativePath />
  </parent>

  <artifactId>build-metrics</artifactId>
  <version>1.2</version>
  <packaging>hpi</packaging>
  
  <properties>
    <!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
    <jenkins.version>1.609.1</jenkins.version>
    <!-- Java Level to use. Java 7 required when using core >= 1.612 -->
    <java.level>7</java.level>
    <!-- Jenkins Test Harness version you use to test the plugin. -->
    <!-- For Jenkins version >= 1.580.1 use JTH 2.x or higher. -->
    <jenkins-test-harness.version>2.13</jenkins-test-harness.version>
  </properties>

  <scm>
    <connection>scm:git:ssh://github.com/jenkinsci/build-metrics-plugin.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/jenkinsci/build-metrics-plugin.git</developerConnection>
    <url>https://github.com/jenkinsci/build-metrics-plugin</url>
    <tag>build-metrics-1.2</tag>
  </scm>
	
  <!-- get every artifact through maven.glassfish.org, which proxies all the artifacts that we need -->
  <repositories>
    <repository>
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
    </repository>
  </repositories>

  <pluginRepositories>
    <pluginRepository>
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
    </pluginRepository>
  </pluginRepositories>
  
  <dependencies>
    <dependency>
      <groupId>org.jenkins-ci.plugins</groupId>
      <artifactId>global-build-stats</artifactId>
      <version>1.2</version>
    </dependency>
  </dependencies>
  
  <url>http://wiki.jenkins-ci.org/display/JENKINS/build-metrics-plugin</url>
  <developers>
    <developer>
      <id>javamllama</id>
      <name>Maddy Goss</name>
      <email>madeline.goss@gmail.com</email>
    </developer>
    <developer>
      <id>ydubreuil</id>
      <name>Yoann Dubreuil</name>
      <email>ydubreuil@cloudbees.com</email>
      <url>https://github.com/ydubreuil</url>
    </developer>
    <developer>
      <id>px3</id>
      <name>Rolf Rother</name>
      <email>roropx3@googlemail.com</email>
      <url>https://github.com/opx3</url>
    </developer>
  </developers>
  
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-release-plugin</artifactId>
          <version>2.5.3</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>
