Author: brett
Date: Fri Dec 30 05:31:52 2011
New Revision: 1225755

URL: http://svn.apache.org/viewvc?rev=1225755&view=rev
Log:
bootstrap the Azure libs for the ITs for now, until they can be served from a
repository. Users will need to do this by hand

Added:
    
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AzureBootstrap.java
   (with props)
    incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/Microsoft.WindowsAzure.Diagnostics-1.0.0.0.pom
   (with props)
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/maven-metadata.xml
   (with props)
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/Microsoft.WindowsAzure.ServiceRuntime-1.0.0.0.pom
   (with props)
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/maven-metadata.xml
   (with props)
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/Microsoft.WindowsAzure.StorageClient-1.1.0.0.pom
   (with props)
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/maven-metadata.xml
   (with props)
    
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/pom.xml   
(with props)
Modified:
    
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/IntegrationTestSuite.java
    
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithMultipleRoles/HelloWorld_WorkerRole/pom.xml
    
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithWorkerRole/HelloWorld_WorkerRole/pom.xml

Added: 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AzureBootstrap.java
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AzureBootstrap.java?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AzureBootstrap.java
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AzureBootstrap.java
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,46 @@
+package npanday.its;
+
+/*
+ * 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
+ *
+ *   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.
+ */
+
+import org.apache.maven.it.Verifier;
+import org.apache.maven.it.util.ResourceExtractor;
+
+import java.io.File;
+
+public class AzureBootstrap
+    extends AbstractNPandayIntegrationTestCase
+{
+    public AzureBootstrap()
+    {
+        super( "[1.5.0-incubating,)" );
+    }
+
+    public void testBootstrap()
+        throws Exception
+    {
+        // TODO: only run if Azure SDK is installed
+
+        File testDir = ResourceExtractor.simpleExtractResources( getClass(), 
"/AzureBootstrap" );
+        Verifier verifier = getVerifier( testDir );
+        verifier.executeGoal( "package" );
+        verifier.verifyErrorFreeLog();
+        verifier.resetStreams();
+    }
+}

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/AzureBootstrap.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/IntegrationTestSuite.java
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/IntegrationTestSuite.java?rev=1225755&r1=1225754&r2=1225755&view=diff
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/IntegrationTestSuite.java
 (original)
+++ 
incubator/npanday/npanday-its/trunk/src/test/java/npanday/its/IntegrationTestSuite.java
 Fri Dec 30 05:31:52 2011
@@ -34,6 +34,7 @@ public class IntegrationTestSuite
          * This must be the first one to ensure the local repository is 
properly setup.
          */
         suite.addTestSuite( BootstrapTest.class );
+        suite.addTestSuite( AzureBootstrap.class );
 
         /*
          * Add tests in order of newest first.

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/Microsoft.WindowsAzure.Diagnostics-1.0.0.0.pom
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/Microsoft.WindowsAzure.Diagnostics-1.0.0.0.pom?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/Microsoft.WindowsAzure.Diagnostics-1.0.0.0.pom
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/Microsoft.WindowsAzure.Diagnostics-1.0.0.0.pom
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>Microsoft.WindowsAzure</groupId>
+  <artifactId>Microsoft.WindowsAzure.Diagnostics</artifactId>
+  <version>1.0.0.0</version>
+  <packaging>dll</packaging>
+  <description>POM was created from install:install-file</description>
+</project>

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/1.0.0.0/Microsoft.WindowsAzure.Diagnostics-1.0.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/maven-metadata.xml
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/maven-metadata.xml?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/maven-metadata.xml
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/maven-metadata.xml
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>Microsoft.WindowsAzure</groupId>
+  <artifactId>Microsoft.WindowsAzure.Diagnostics</artifactId>
+  <version>1.0.0.0</version>
+  <versioning>
+    <versions>
+      <version>1.0.0.0</version>
+    </versions>
+    <lastUpdated>20111230045336</lastUpdated>
+  </versioning>
+</metadata>

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.Diagnostics/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/Microsoft.WindowsAzure.ServiceRuntime-1.0.0.0.pom
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/Microsoft.WindowsAzure.ServiceRuntime-1.0.0.0.pom?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/Microsoft.WindowsAzure.ServiceRuntime-1.0.0.0.pom
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/Microsoft.WindowsAzure.ServiceRuntime-1.0.0.0.pom
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>Microsoft.WindowsAzure</groupId>
+  <artifactId>Microsoft.WindowsAzure.ServiceRuntime</artifactId>
+  <version>1.0.0.0</version>
+  <packaging>dll</packaging>
+  <description>POM was created from install:install-file</description>
+</project>

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/1.0.0.0/Microsoft.WindowsAzure.ServiceRuntime-1.0.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/maven-metadata.xml
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/maven-metadata.xml?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/maven-metadata.xml
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/maven-metadata.xml
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>Microsoft.WindowsAzure</groupId>
+  <artifactId>Microsoft.WindowsAzure.ServiceRuntime</artifactId>
+  <version>1.0.0.0</version>
+  <versioning>
+    <versions>
+      <version>1.0.0.0</version>
+    </versions>
+    <lastUpdated>20111230045338</lastUpdated>
+  </versioning>
+</metadata>

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.ServiceRuntime/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/Microsoft.WindowsAzure.StorageClient-1.1.0.0.pom
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/Microsoft.WindowsAzure.StorageClient-1.1.0.0.pom?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/Microsoft.WindowsAzure.StorageClient-1.1.0.0.pom
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/Microsoft.WindowsAzure.StorageClient-1.1.0.0.pom
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>Microsoft.WindowsAzure</groupId>
+  <artifactId>Microsoft.WindowsAzure.StorageClient</artifactId>
+  <version>1.1.0.0</version>
+  <packaging>dll</packaging>
+  <description>POM was created from install:install-file</description>
+</project>

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/1.1.0.0/Microsoft.WindowsAzure.StorageClient-1.1.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/maven-metadata.xml
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/maven-metadata.xml?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/maven-metadata.xml
 (added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/maven-metadata.xml
 Fri Dec 30 05:31:52 2011
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>Microsoft.WindowsAzure</groupId>
+  <artifactId>Microsoft.WindowsAzure.StorageClient</artifactId>
+  <version>1.1.0.0</version>
+  <versioning>
+    <versions>
+      <version>1.1.0.0</version>
+    </versions>
+    <lastUpdated>20111230045337</lastUpdated>
+  </versioning>
+</metadata>

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/azure-repo/Microsoft/WindowsAzure/Microsoft.WindowsAzure.StorageClient/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/pom.xml?rev=1225755&view=auto
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/pom.xml 
(added)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/pom.xml 
Fri Dec 30 05:31:52 2011
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ 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
+  ~
+  ~   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/xsd/maven-4.0.0.xsd";>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>NPanday.ITs</groupId>
+    <artifactId>NPanday.ITs.Parent</artifactId>
+    <version>1-SNAPSHOT</version>
+  </parent>
+  <groupId>NPanday.ITs.AzureBootstrap</groupId>
+  <artifactId>AzureBoostrap</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <dependencies>
+    <dependency>
+      <groupId>Microsoft.WindowsAzure</groupId>
+      <artifactId>Microsoft.WindowsAzure.StorageClient</artifactId>
+      <version>1.1.0.0</version>
+      <type>dotnet-library</type>
+      <scope>system</scope>
+      <systemPath>C:\Program Files\Windows Azure 
SDK\v1.6\ref\Microsoft.WindowsAzure.StorageClient.dll</systemPath>
+    </dependency>
+    <dependency>
+      <groupId>Microsoft.WindowsAzure</groupId>
+      <artifactId>Microsoft.WindowsAzure.ServiceRuntime</artifactId>
+      <version>1.0.0.0</version>
+      <type>dotnet-library</type>
+      <scope>system</scope>
+      <systemPath>C:\Program Files\Windows Azure 
SDK\v1.6\ref\Microsoft.WindowsAzure.ServiceRuntime.dll</systemPath>
+    </dependency>
+    <dependency>
+      <groupId>Microsoft.WindowsAzure</groupId>
+      <artifactId>Microsoft.WindowsAzure.Diagnostics</artifactId>
+      <version>1.0.0.0</version>
+      <type>dotnet-library</type>
+      <scope>system</scope>
+      <systemPath>C:\Program Files\Windows Azure 
SDK\v1.6\ref\Microsoft.WindowsAzure.Diagnostics.dll</systemPath>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <version>2.4</version>
+        <executions>
+          <execution>
+            <id>copy-dependencies</id>
+            <phase>package</phase>
+            <goals>
+              <goal>copy-dependencies</goal>
+            </goals>
+            <configuration>
+              <outputDirectory>azure-repo</outputDirectory>
+              <useRepositoryLayout>true</useRepositoryLayout>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Propchange: 
incubator/npanday/npanday-its/trunk/src/test/resources/AzureBootstrap/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithMultipleRoles/HelloWorld_WorkerRole/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithMultipleRoles/HelloWorld_WorkerRole/pom.xml?rev=1225755&r1=1225754&r2=1225755&view=diff
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithMultipleRoles/HelloWorld_WorkerRole/pom.xml
 (original)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithMultipleRoles/HelloWorld_WorkerRole/pom.xml
 Fri Dec 30 05:31:52 2011
@@ -40,6 +40,16 @@
     <frameworkVersion>4.0</frameworkVersion>
   </properties>
 
+  <repositories>
+    <repository>
+      <id>azure-it-repo</id>
+      <url>file:${basedir}/../../AzureBootstrap/azure-repo</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
   <dependencies>
     <dependency>
       <groupId>Microsoft.WindowsAzure</groupId>

Modified: 
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithWorkerRole/HelloWorld_WorkerRole/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithWorkerRole/HelloWorld_WorkerRole/pom.xml?rev=1225755&r1=1225754&r2=1225755&view=diff
==============================================================================
--- 
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithWorkerRole/HelloWorld_WorkerRole/pom.xml
 (original)
+++ 
incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_CloudServiceWithWorkerRole/HelloWorld_WorkerRole/pom.xml
 Fri Dec 30 05:31:52 2011
@@ -40,6 +40,16 @@
     <frameworkVersion>4.0</frameworkVersion>
   </properties>
 
+  <repositories>
+    <repository>
+      <id>azure-it-repo</id>
+      <url>file:${basedir}/../../AzureBootstrap/azure-repo</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
   <dependencies>
     <dependency>
       <groupId>Microsoft.WindowsAzure</groupId>


Reply via email to