<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>1.509.3</version><!-- which version of Jenkins is this plugin built against? -->
  </parent>

  <artifactId>elasticbox</artifactId>
  <version>0.8.1</version>
  <packaging>hpi</packaging>

  <!-- get every artifact through repo.jenkins-ci.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>

  <name>ElasticBox CI Plug-in</name>
  <description>
    Provides full integration between Jenkins and ElasticBox (http://elasticbox.com).
    With this plugin, Jenkins can launch, provision, and manage Jenkins slaves on-demand in different cloud providers via ElasticBox.
  </description>
  <url>https://wiki.jenkins-ci.org/display/JENKINS/ElasticBox+CI</url>
  <developers>
    <developer>
      <id>tphongio</id>
      <name>Phong Nguyen Le</name>
      <email>ple@elasticbox.com</email>
    </developer>
  </developers>  
  <scm>
    <connection>scm:git:ssh://github.com/jenkinsci/elasticbox-plugin.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/jenkinsci/elasticbox-plugin.git</developerConnection>
    <url>https://github.com/jenkinsci/elasticbox-plugin</url>
  </scm>
    <dependencies>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.2</version>
        </dependency>
    </dependencies>
</project>
