2013-04-29 00:54:40 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
2013-05-22 02:33:57 -04:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You 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
|
2013-04-29 00:54:40 -04:00
|
|
|
|
2013-05-22 02:33:57 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2013-04-29 00:54:40 -04:00
|
|
|
|
2013-05-22 02:33:57 -04:00
|
|
|
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.
|
2013-04-29 00:54:40 -04:00
|
|
|
|
|
|
|
-->
|
|
|
|
<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">
|
2013-05-13 13:46:01 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-05-10 19:30:27 -04:00
|
|
|
<groupId>org.apache.jclouds.labs</groupId>
|
2013-05-13 13:46:01 -04:00
|
|
|
<artifactId>jclouds-labs-google</artifactId>
|
2014-08-05 05:46:53 -04:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2013-05-13 13:46:01 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<!-- TODO: when out of labs, switch to org.jclouds.api -->
|
|
|
|
<groupId>org.apache.jclouds.labs</groupId>
|
|
|
|
<artifactId>oauth</artifactId>
|
|
|
|
<name>jclouds OAuth core</name>
|
|
|
|
<description>jclouds components to access OAuth</description>
|
2013-04-29 00:54:40 -04:00
|
|
|
|
2013-05-13 13:46:01 -04:00
|
|
|
<properties>
|
|
|
|
<test.oauth.identity>FIX_ME</test.oauth.identity>
|
|
|
|
<test.oauth.credential>FIX_ME</test.oauth.credential>
|
|
|
|
<test.oauth.endpoint>FIX_ME</test.oauth.endpoint>
|
|
|
|
<test.jclouds.oauth.signature-or-mac-algorithm>FIX_ME</test.jclouds.oauth.signature-or-mac-algorithm>
|
|
|
|
<test.jclouds.oauth.audience>FIX_ME</test.jclouds.oauth.audience>
|
|
|
|
<test.jclouds.oauth.scopes>FIX_ME</test.jclouds.oauth.scopes>
|
|
|
|
<test.oauth.api-version>2</test.oauth.api-version>
|
|
|
|
<test.oauth.build-version />
|
|
|
|
</properties>
|
2013-04-29 00:54:40 -04:00
|
|
|
|
2013-05-13 13:46:01 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${jclouds.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-core</artifactId>
|
|
|
|
<version>${jclouds.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jclouds.driver</groupId>
|
|
|
|
<artifactId>jclouds-slf4j</artifactId>
|
|
|
|
<version>${jclouds.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-04-29 00:54:40 -04:00
|
|
|
|
2013-05-13 13:46:01 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>live</id>
|
|
|
|
<build>
|
2013-04-29 00:54:40 -04:00
|
|
|
<plugins>
|
2013-05-13 13:46:01 -04:00
|
|
|
<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>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<test.oauth.identity>${test.oauth.identity}</test.oauth.identity>
|
|
|
|
<test.oauth.credential>${test.oauth.credential}</test.oauth.credential>
|
|
|
|
<test.oauth.endpoint>${test.oauth.endpoint}</test.oauth.endpoint>
|
|
|
|
<test.oauth.api-version>${test.oauth.api-version}</test.oauth.api-version>
|
|
|
|
<test.oauth.build-version>${test.oauth.build-version}</test.oauth.build-version>
|
|
|
|
<test.jclouds.oauth.signature-or-mac-algorithm>${test.jclouds.oauth.signature-or-mac-algorithm>}</test.jclouds.oauth.signature-or-mac-algorithm>
|
|
|
|
<test.jclouds.oauth.audience>${test.jclouds.oauth.audience}</test.jclouds.oauth.audience>
|
|
|
|
<test.jclouds.oauth.scopes>${test.jclouds.oauth.scopes}</test.jclouds.oauth.scopes>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-04-29 00:54:40 -04:00
|
|
|
</plugins>
|
2013-05-13 13:46:01 -04:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2013-04-29 00:54:40 -04:00
|
|
|
</project>
|