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/19 16:41:03 UTC

svn commit: r1220835 - in /incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp: assembly.xml pom.xml

Author: lcorneliussen
Date: Mon Dec 19 16:41:02 2011
New Revision: 1220835

URL: http://svn.apache.org/viewvc?rev=1220835&view=rev
Log:
[NPANDAY-488] MSDeploy packaging (without config transforms)

Removed:
    incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/assembly.xml
Modified:
    incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml?rev=1220835&r1=1220834&r2=1220835&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPANDAY_488_MSDeployPackageSimpleWebApp/pom.xml Mon Dec 19 16:41:02 2011
@@ -12,13 +12,17 @@
     <version>1-SNAPSHOT</version>
   </parent>
  
-  <groupId>NPANDAY_488_MSDeployPackageSimpleWebApp</groupId>
+  <groupId>NPanday.ITs.NPANDAY_488_MSDeployPackageSimpleWebApp</groupId>
   <artifactId>HelloWorld_WebRole</artifactId>
   <packaging>dotnet-library</packaging>
   <version>1.0.0-SNAPSHOT</version>
 
   <name>NPanday.ITs.NPANDAY_488_MSDeployPackageSimpleWebApp :: Hello World Web Role</name>
 
+  <properties>
+    <frameworkVersion>4.0</frameworkVersion>
+  </properties>
+
   <profiles>
     <profile>
       <id>standalone</id>
@@ -28,7 +32,7 @@
         </property>
       </activation>
       <properties>
-        <npanday.version>1.5.0-azuresupport-SNAPSHOT</npanday.version>
+        <npanday.version>1.5.0-incubating-SNAPSHOT</npanday.version>
       </properties>
       <build>
         <pluginManagement>
@@ -61,81 +65,30 @@
         <extensions>true</extensions>
       </plugin>
       <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.2.1</version>
-        <executions>
-          <execution>
-            <id>assemble</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>single</goal>
-            </goals>
-            <configuration>
-              <finalName>prepare-package</finalName>
-              <appendAssemblyId>false</appendAssemblyId>
-              <attach>false</attach>
-              <descriptors>
-                <descriptor>assembly.xml</descriptor>
-              </descriptors>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>exec-maven-plugin</artifactId>
-        <version>1.2.1</version>
+        <groupId>org.apache.npanday.plugins</groupId>
+        <artifactId>aspnet-maven-plugin</artifactId>
+        <version>${npanday.version}</version>
         <executions>
           <execution>
-            <id>xdt-transform</id>
+            <id>prepare-package</id>
             <phase>prepare-package</phase>
             <goals>
-              <goal>exec</goal>
-            </goals>
-            <configuration>
-              <executable>msbuild</executable>
-              <arguments>
-                <argument>copy-transformed.xml</argument>
-                <argument>/p:WorkDirectory=${build.directory}/prepare-package</argument>
-              </arguments>
-            </configuration>
-          </execution>
-          <execution>
-            <id>msbuild</id>
-            <phase>package</phase>
-            <goals>
-              <goal>exec</goal>
+              <goal>assemble-package-files</goal>
             </goals>
-            <configuration>
-              <executable>msdeploy</executable>
-              <arguments>
-                <argument>-verb:sync</argument>
-                <argument>-source:dirPath=${build.directory}/prepare-package/03-transformed</argument>
-                <argument>-dest:package=${build.directory}/${artifactId}.msdeploy.zip</argument>
-              </arguments>
-            </configuration>
           </execution>
         </executions>
       </plugin>
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>build-helper-maven-plugin</artifactId>
-        <version>1.7</version>
+        <groupId>org.apache.npanday.plugins</groupId>
+        <artifactId>msdeploy-maven-plugin</artifactId>
+        <version>${npanday.version}</version>
         <executions>
           <execution>
-            <id>add-msdeploy-package</id>
+            <id>create-msdeploy-package</id>
             <phase>package</phase>
             <goals>
-              <goal>attach-artifact</goal>
+              <goal>create-package</goal>
             </goals>
-            <configuration>
-              <artifacts>
-                <artifact>
-                  <file>${build.directory}/${artifactId}.msdeploy.zip</file>
-                  <type>msdeploy-package</type>
-                </artifact>
-              </artifacts>
-            </configuration>
           </execution>
         </executions>
       </plugin>