Author: brett
Date: Thu Aug 15 09:59:18 2013
New Revision: 1514221
URL: http://svn.apache.org/r1514221
Log:
adjust warning
System scope dependencies are now copied.
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=1514221&r1=1514220&r2=1514221&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 Aug 15 09:59:18 2013
@@ -273,17 +273,14 @@ namespace NPanday.ProjectImporter
{
if (depSearchConfig.CopyToMaven)
{
- 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.";
+ warningMsg += "The following artifacts were copied to the
local Maven repository:";
}
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."
- + "\n\nNote: artifacts with a system path will not be
packaged or used as a runtime dependency by Maven";
+ warningMsg += "\nThe build may not be portable if local
references are used:";
}
+ warningMsg += "\n\t" + string.Join("\n\t",
nonPortableReferences.ToArray())
+ + "\nDeploying the reference to a Repository will make
the code portable to other machines.";
}
return result;
}