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 2011/12/31 15:38:55 UTC

svn commit: r1226105 - /incubator/npanday/trunk/dotnet/assemblies/NPanday.Utils/src/main/csharp/PomHelperUtility.cs

Author: brett
Date: Sat Dec 31 15:38:54 2011
New Revision: 1226105

URL: http://svn.apache.org/viewvc?rev=1226105&view=rev
Log:
remove POM modification - all instances of adding the compile and aspx plugin ensure extensions are set already

Modified:
    incubator/npanday/trunk/dotnet/assemblies/NPanday.Utils/src/main/csharp/PomHelperUtility.cs

Modified: incubator/npanday/trunk/dotnet/assemblies/NPanday.Utils/src/main/csharp/PomHelperUtility.cs
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.Utils/src/main/csharp/PomHelperUtility.cs?rev=1226105&r1=1226104&r2=1226105&view=diff
==============================================================================
--- incubator/npanday/trunk/dotnet/assemblies/NPanday.Utils/src/main/csharp/PomHelperUtility.cs (original)
+++ incubator/npanday/trunk/dotnet/assemblies/NPanday.Utils/src/main/csharp/PomHelperUtility.cs Sat Dec 31 15:38:54 2011
@@ -421,19 +421,6 @@ namespace NPanday.Utils
             {
                 pomFile.Directory.Create();
             }
-            List<NPanday.Model.Pom.Plugin> plugins = new List<NPanday.Model.Pom.Plugin>();
-            if (model.build != null && model.build.plugins != null)
-            {
-                foreach (Plugin item in model.build.plugins)
-                {
-                    plugins.Add(item);
-                    if ((item.artifactId.Equals("maven-compile-plugin")) || (item.artifactId.Equals("maven-aspx-plugin")))
-                    {
-                        item.extensions = true;
-                    }
-                }
-                model.build.plugins = plugins.ToArray();
-            }
             TextWriter writer = null;
             XmlSerializer serializer = null;
             try