<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.532.1</version><!-- version of Jenkins this plugin is built against, oldest supported version is 1.532.1 -->
    </parent>

    <artifactId>elasticbox</artifactId>
    <version>0.9.3</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>
        <tag>HEAD</tag>
    </scm>
    <dependencies>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpmime</artifactId>
            <version>4.3</version>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <version>1.5.0</version>
            <scope>test</scope>
            <type>jar</type>
        </dependency>
    </dependencies>

    <properties>
        <skipTests>true</skipTests>
    </properties>
        
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.17</version>
                <configuration>
                    <forkCount>1C</forkCount>
                    <excludes>              
                        <exclude>**/*SlaveTest.java</exclude>
                    </excludes>
                    <skipTests>${skipTests}</skipTests>          
                </configuration>
            </plugin>
        </plugins>
    </build>    
</project>
