mirror of https://github.com/apache/jclouds.git
154 lines
7.7 KiB
XML
154 lines
7.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Licensed to jclouds, Inc. (jclouds) under one or more
|
|
contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. jclouds 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
|
|
|
|
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-demos-tweetstore-project</artifactId>
|
|
<version>1.4.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>jclouds-demo-runatcloud-tweetstore</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>jclouds TweetStore for RUN@cloud</name>
|
|
<description>jclouds TweetStore for CloudBees' RUN@cloud using Guice for Dependency Injection</description>
|
|
|
|
<properties>
|
|
<bees.appid>jclouds/tweetstore</bees.appid>
|
|
<!-- first part of the live URL, used in cloudbees-web.xml -->
|
|
<bees.apptitle>tweetstore</bees.apptitle>
|
|
<test.bees.address>localhost</test.bees.address>
|
|
<test.bees.port>8088</test.bees.port>
|
|
<jclouds.tweetstore.container>jclouds-runatcloud-tweetstore</jclouds.tweetstore.container>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
<artifactId>guice-servlet</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
|
|
<!-- RUN@cloud API -->
|
|
<dependency>
|
|
<groupId>net.stax</groupId>
|
|
<artifactId>stax-appserver</artifactId>
|
|
<version>1.0.20110131-SNAPSHOT</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<!-- net.stax:stax-appserver is not in central -->
|
|
<repository>
|
|
<id>bees-snapshots</id>
|
|
<url>http://repository-cloudbees.forge.cloudbees.com/public-snapshot</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>live</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>integration</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<configuration>
|
|
<systemPropertyVariables>
|
|
<test.twitter.consumer.identity>${test.twitter.runatcloud-tweetstore.consumer.identity}</test.twitter.consumer.identity>
|
|
<test.twitter.consumer.credential>${test.twitter.runatcloud-tweetstore.consumer.credential}</test.twitter.consumer.credential>
|
|
<test.twitter.access.identity>${test.twitter.runatcloud-tweetstore.access.identity}</test.twitter.access.identity>
|
|
<test.twitter.access.credential>${test.twitter.runatcloud-tweetstore.access.credential}</test.twitter.access.credential>
|
|
<test.azureblob.identity>${test.azureblob.identity}</test.azureblob.identity>
|
|
<test.azureblob.credential>${test.azureblob.credential}</test.azureblob.credential>
|
|
<test.cloudfiles-us.identity>${test.cloudfiles-us.identity}</test.cloudfiles-us.identity>
|
|
<test.cloudfiles-us.credential>${test.cloudfiles-us.credential}</test.cloudfiles-us.credential>
|
|
<test.aws-s3.identity>${test.aws-s3.identity}</test.aws-s3.identity>
|
|
<test.aws-s3.credential>${test.aws-s3.credential}</test.aws-s3.credential>
|
|
<test.cloudonestorage.identity>${test.cloudonestorage.identity}</test.cloudonestorage.identity>
|
|
<test.cloudonestorage.credential>${test.cloudonestorage.credential}</test.cloudonestorage.credential>
|
|
<test.ninefold-storage.identity>${test.ninefold-storage.identity}</test.ninefold-storage.identity>
|
|
<test.ninefold-storage.credential>${test.ninefold-storage.credential}</test.ninefold-storage.credential>
|
|
<bees.address>${test.bees.address}</bees.address>
|
|
<bees.port>${test.bees.port}</bees.port>
|
|
<jclouds.tweetstore.blobstores>${jclouds.tweetstore.blobstores}</jclouds.tweetstore.blobstores>
|
|
<!-- test.jclouds-runatcloud-tweetstore giving 500 errors in cloudonestorage -->
|
|
<jclouds.tweetstore.container>test.${jclouds.tweetstore.container}2</jclouds.tweetstore.container>
|
|
<bees.basedir>${project.build.directory}/bees</bees.basedir>
|
|
<warfile>${project.build.directory}/${project.artifactId}</warfile>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>deploy</id>
|
|
<properties>
|
|
<!-- classifier to choose the correct jclouds.properties file -->
|
|
<tweetstore.instance>runatcloud-tweetstore</tweetstore.instance>
|
|
</properties>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>bees-snapshots</id>
|
|
<url>http://repository-cloudbees.forge.cloudbees.com/public-snapshot</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.cloudbees</groupId>
|
|
<artifactId>bees-maven-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<configuration>
|
|
<environment>run</environment>
|
|
<apikey>${bees.apikey}</apikey>
|
|
<secret>${bees.secret}</secret>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|