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 br...@apache.org on 2012/01/26 11:23:07 UTC

svn commit: r1236145 - in /incubator/npanday/branches/npanday-1.4.x: ./ components/dotnet-artifact/src/main/resources/META-INF/plexus/components.xml components/dotnet-core/src/main/java/npanday/ArtifactType.java

Author: brett
Date: Thu Jan 26 11:23:06 2012
New Revision: 1236145

URL: http://svn.apache.org/viewvc?rev=1236145&view=rev
Log:
[NPANDAY-535] ensure a ZIP is installed in the local repository

Modified:
    incubator/npanday/branches/npanday-1.4.x/   (props changed)
    incubator/npanday/branches/npanday-1.4.x/components/dotnet-artifact/src/main/resources/META-INF/plexus/components.xml
    incubator/npanday/branches/npanday-1.4.x/components/dotnet-core/src/main/java/npanday/ArtifactType.java

Propchange: incubator/npanday/branches/npanday-1.4.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Jan 26 11:23:06 2012
@@ -1,4 +1,4 @@
 /incubator/npanday/branches/NPANDAY-410:1210743-1210765
 /incubator/npanday/branches/npanday-uac-removed:1002005-1024539
 /incubator/npanday/branches/npanday-vs2010-support:1002029-1025477
-/incubator/npanday/trunk:1221087,1221092,1221101,1221116-1221117,1221159,1222098-1222180,1222459-1222547,1226035,1227061,1227127,1227131-1227181
+/incubator/npanday/trunk:1221087,1221092,1221101,1221116-1221117,1221159,1222098-1222180,1222459-1222547,1226035,1227061,1227127,1227131-1227181,1236141

Modified: incubator/npanday/branches/npanday-1.4.x/components/dotnet-artifact/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/branches/npanday-1.4.x/components/dotnet-artifact/src/main/resources/META-INF/plexus/components.xml?rev=1236145&r1=1236144&r2=1236145&view=diff
==============================================================================
--- incubator/npanday/branches/npanday-1.4.x/components/dotnet-artifact/src/main/resources/META-INF/plexus/components.xml (original)
+++ incubator/npanday/branches/npanday-1.4.x/components/dotnet-artifact/src/main/resources/META-INF/plexus/components.xml Thu Jan 26 11:23:06 2012
@@ -121,6 +121,7 @@
       <role-hint>asp</role-hint>
       <implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
       <configuration>
+        <extension>zip</extension>
         <type>asp</type>
       </configuration>
     </component>         

Modified: incubator/npanday/branches/npanday-1.4.x/components/dotnet-core/src/main/java/npanday/ArtifactType.java
URL: http://svn.apache.org/viewvc/incubator/npanday/branches/npanday-1.4.x/components/dotnet-core/src/main/java/npanday/ArtifactType.java?rev=1236145&r1=1236144&r2=1236145&view=diff
==============================================================================
--- incubator/npanday/branches/npanday-1.4.x/components/dotnet-core/src/main/java/npanday/ArtifactType.java (original)
+++ incubator/npanday/branches/npanday-1.4.x/components/dotnet-core/src/main/java/npanday/ArtifactType.java Thu Jan 26 11:23:06 2012
@@ -141,7 +141,7 @@ public enum ArtifactType
     
     SHARP_DEVELOP_ADDIN( "sharp-develop-addin", "library", "dll" ),
     
-    ASP ( "asp", "library", "dll" ),
+    ASP ( "asp", "library", "zip" ),
     
     GAC ( "gac", null, "dll"),