You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by lc...@apache.org on 2011/12/28 10:45:10 UTC

svn commit: r1225159 - /incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld/pom.xml

Author: lcorneliussen
Date: Wed Dec 28 10:45:10 2011
New Revision: 1225159

URL: http://svn.apache.org/viewvc?rev=1225159&view=rev
Log:
[NPANDAY-480] Support Windows Azure Cloud Service Project and Packaging (CCPack)

o making use of lifecycle definition (<extensions>true</>) on azure-maven-plugin

Modified:
    incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld/pom.xml

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld/pom.xml?rev=1225159&r1=1225158&r2=1225159&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld/pom.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_480_AzureSupportOneWebRole/HelloWorld/pom.xml Wed Dec 28 10:45:10 2011
@@ -50,126 +50,9 @@
     <plugins>
       <plugin>
         <groupId>org.apache.npanday.plugins</groupId>
-        <artifactId>custom-lifecycle-maven-plugin</artifactId>
-        <extensions>true</extensions>
-        <configuration>
-          <skip>true</skip>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.npanday.plugins</groupId>
-        <artifactId>msdeploy-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>unpack-dependencies</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>azure-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>default-process-cloud-service-configuration</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>process-cloud-service-configuration</goal>
-            </goals>
-          </execution>
-          <execution>
-            <id>default-create-cloud-service-package</id>
-            <phase>package</phase>
-            <goals>
-              <goal>create-cloud-service-package</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-
-      <!--plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.3</version>
-        <executions>
-          <execution>
-            <id>copy-dependencies</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>copy-dependencies</goal>
-            </goals>
-            <configuration>
-              <stripVersion>true</stripVersion>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>exec-maven-plugin</artifactId>
-        <version>1.2.1</version>
-        <executions>
-          <execution>
-            <id>msdeploy-unpack</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>exec</goal>
-            </goals>
-            <configuration>
-              <executable>msdeploy</executable>
-              <arguments>
-                <argument>-verb:sync</argument>
-                <argument>-source:package=${build.directory}\dependency\HelloWorld_WebRole.msdeploy.zip</argument>
-                <argument>-dest:dirPath=${build.directory}\prepare-package\HelloWorld_WebRole</argument>
-              </arguments>
-            </configuration>
-          </execution>
-          <execution>
-            <id>cspack</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>exec</goal>
-            </goals>
-            <configuration>
-              <executable>cmd</executable>
-              <arguments>
-                <argument>/C</argument>
-                <argument>cspack</argument>
-                <argument>ServiceDefinition.csdef</argument>
-                <argument>"/out:target\HelloWorld_CloudService-1.0.0-SNAPSHOT.cspkg"</argument>
-                <argument>"/role:HelloWorld_WebRole;${build.directory}\prepare-package\HelloWorld_WebRole"</argument>
-                <argument>"/sites:HelloWorld_WebRole;Web;${build.directory}\prepare-package\HelloWorld_WebRole"</argument>
-              </arguments>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin-->
-
-      <!--<plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>build-helper-maven-plugin</artifactId>
-        <version>1.7</version>
-        <executions>
-          <execution>
-            <id>add-msdeploy-package</id>
-            <phase>package</phase>
-            <goals>
-              <goal>attach-artifact</goal>
-            </goals>
-            <configuration>
-              <artifacts>
-                <artifact>
-                  <file>${build.directory}/${artifactId}.msdeploy.zip</file>
-                  <type>msdeploy-package</type>
-                </artifact>
-              </artifacts>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>-->
+        <extensions>true</extensions>
+       </plugin>
     </plugins>
   </build>
 </project>  
\ No newline at end of file