Author: brett
Date: Mon Jan 2 17:22:16 2012
New Revision: 1226482
URL: http://svn.apache.org/viewvc?rev=1226482&view=rev
Log:
[NPANDAY-480] add "includeDependencies" to the artifact type for
dotnet-application packages, so that Azure projects don't have a problem trying
to resolve the dependencies
Modified:
incubator/npanday/trunk/components/dotnet-core/src/main/java/npanday/ArtifactType.java
Modified:
incubator/npanday/trunk/components/dotnet-core/src/main/java/npanday/ArtifactType.java
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/components/dotnet-core/src/main/java/npanday/ArtifactType.java?rev=1226482&r1=1226481&r2=1226482&view=diff
==============================================================================
---
incubator/npanday/trunk/components/dotnet-core/src/main/java/npanday/ArtifactType.java
(original)
+++
incubator/npanday/trunk/components/dotnet-core/src/main/java/npanday/ArtifactType.java
Mon Jan 2 17:22:16 2012
@@ -92,7 +92,7 @@ public enum ArtifactType
* A zip containing everything an application (or library) needs
* to be run, including transitive dependencies and so on.
*/
- DOTNET_APPLICATION("dotnet-application", null, "app.zip"),
+ DOTNET_APPLICATION("dotnet-application", null, "app.zip", true),
// We should reconsider those..