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 2013/03/07 06:18:37 UTC

svn commit: r1453700 - /incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/NPandayImporter.cs

Author: brett
Date: Thu Mar  7 06:18:36 2013
New Revision: 1453700

URL: http://svn.apache.org/r1453700
Log:
[NPANDAY-578] highlight implication of system dependencies

Modified:
    incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/NPandayImporter.cs

Modified: incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/NPandayImporter.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/NPandayImporter.cs?rev=1453700&r1=1453699&r2=1453700&view=diff
==============================================================================
--- incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/NPandayImporter.cs (original)
+++ incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/NPandayImporter.cs Thu Mar  7 06:18:36 2013
@@ -275,13 +275,14 @@ namespace NPanday.ProjectImporter
                 {
                     warningMsg += "The following artifacts were copied to the local Maven repository:"
                          + "\n\t" + string.Join("\n\t", nonPortableReferences.ToArray())
-                         + "\nDeploying the reference to a Repository will make the code portable to other machines";
+                         + "\nDeploying the reference to a Repository will make the code portable to other machines.";
                 }
                 else
                 {
                     warningMsg += "\nThe build may not be portable if local references are used:"
                          + "\n\t" + string.Join("\n\t", nonPortableReferences.ToArray())
-                         + "\nDeploying the reference to a Repository will make the code portable to other machines";
+                         + "\nDeploying the reference to a Repository will make the code portable to other machines." 
+                         + "\n\nNote: artifacts with a system path will not be packaged or used as a runtime dependency by Maven";
                 }
             }
             return result;