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 2012/05/03 07:39:04 UTC

svn commit: r1333333 - in /incubator/npanday/trunk/plugins: application-maven-plugin/src/main/resources/assemblies/application-defaults.xml aspnet-maven-plugin/src/main/resources/assemblies/aspnet-webapp-defaults.xml

Author: lcorneliussen
Date: Thu May  3 07:39:04 2012
New Revision: 1333333

URL: http://svn.apache.org/viewvc?rev=1333333&view=rev
Log:
[NPANDAY-518] Packaging for .NET Applications (Non-Web, also Azure Worker Roles)

o Reference to components without leading /, since that is what maven 3 requires

Modified:
    incubator/npanday/trunk/plugins/application-maven-plugin/src/main/resources/assemblies/application-defaults.xml
    incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/aspnet-webapp-defaults.xml

Modified: incubator/npanday/trunk/plugins/application-maven-plugin/src/main/resources/assemblies/application-defaults.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/application-maven-plugin/src/main/resources/assemblies/application-defaults.xml?rev=1333333&r1=1333332&r2=1333333&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/application-maven-plugin/src/main/resources/assemblies/application-defaults.xml (original)
+++ incubator/npanday/trunk/plugins/application-maven-plugin/src/main/resources/assemblies/application-defaults.xml Thu May  3 07:39:04 2012
@@ -31,6 +31,6 @@
      Just specifying bare file names would need a fix for:
      http://jira.codehaus.org/browse/MASSEMBLY-585
      -->
-    <componentDescriptor>/assemblies/components/application-binaries.xml</componentDescriptor>
+    <componentDescriptor>assemblies/components/application-binaries.xml</componentDescriptor>
   </componentDescriptors>
 </assembly>
\ No newline at end of file

Modified: incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/aspnet-webapp-defaults.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/aspnet-webapp-defaults.xml?rev=1333333&r1=1333332&r2=1333333&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/aspnet-webapp-defaults.xml (original)
+++ incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/aspnet-webapp-defaults.xml Thu May  3 07:39:04 2012
@@ -31,7 +31,7 @@
      Just specifying bare file names would need a fix for:
      http://jira.codehaus.org/browse/MASSEMBLY-585
      -->
-    <componentDescriptor>/assemblies/components/aspnet-webapp-binaries.xml</componentDescriptor>
-    <componentDescriptor>/assemblies/components/aspnet-webapp-contents.xml</componentDescriptor>
+    <componentDescriptor>assemblies/components/aspnet-webapp-binaries.xml</componentDescriptor>
+    <componentDescriptor>assemblies/components/aspnet-webapp-contents.xml</componentDescriptor>
   </componentDescriptors>
 </assembly>
\ No newline at end of file