<?xml version="1.0" encoding="UTF-8"?>
    <!--


        Copyright (C) 2010 Cloud Conscious, LLC.
        <info@cloudconscious.com>

        ====================================================================
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
        applicable law or agreed to in writing, software distributed
        under the License is distributed on an "AS IS" BASIS, WITHOUT
        WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions
        and limitations under the License.
        ====================================================================
    -->

<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.jclouds</groupId>
        <artifactId>jclouds-vcloud-project</artifactId>
        <version>1.0-beta-7</version>
    </parent>
    <artifactId>jclouds-vcloud</artifactId>
    <name>jclouds vcloud Components Core</name>
    <description>jclouds Core components to access vcloud</description>
    <properties>
        <!-- when instances are hung, open a ticket and add here -->
        <jclouds.compute.blacklist.nodes>trmkrun-ccc,test.trmk-924</jclouds.compute.blacklist.nodes>
        <test.vcloud.endpoint>https://66.45.200.97/api</test.vcloud.endpoint>
        <test.vcloud.apiversion>1.0</test.vcloud.apiversion>
        <test.vcloud.identity>FIXME</test.vcloud.identity>
        <test.vcloud.credential>FIXME</test.vcloud.credential>
    </properties>
    <scm>
        <connection>scm:svn:http://jclouds.googlecode.com/svn/trunk/vcloud/core</connection>
        <developerConnection>scm:svn:https://jclouds.googlecode.com/svn/trunk/vcloud/core</developerConnection>
        <url>http://jclouds.googlecode.com/svn/trunk/vcloud/core</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>com.jamesmurty.utils</groupId>
            <artifactId>java-xmlbuilder</artifactId>
            <version>0.3</version>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>jclouds-core</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>

    <profiles>
        <profile>
            <id>live</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>integration</id>
                                <phase>integration-test</phase>
                                <goals>
                                    <goal>test</goal>
                                </goals>
                                <configuration>
                                    <systemProperties>
                                        <property>
                                            <name>test.vcloud.endpoint</name>
                                            <value>${test.vcloud.endpoint}</value>
                                        </property>
                                        <property>
                                            <name>test.vcloud.apiversion</name>
                                            <value>${test.vcloud.apiversion}</value>
                                        </property>
                                        <property>
                                            <name>test.vcloud.identity</name>
                                            <value>${test.vcloud.identity}</value>
                                        </property>
                                        <property>
                                            <name>test.vcloud.credential</name>
                                            <value>${test.vcloud.credential}</value>
                                        </property>
                                        <property>
                                            <name>jclouds.compute.blacklist.nodes</name>
                                            <value>${jclouds.compute.blacklist.nodes}</value>
                                        </property>
                                    </systemProperties>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>
