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 lc...@apache.org on 2011/05/03 08:12:22 UTC

svn commit: r1098956 [2/2] - in /incubator/npanday/trunk: ./ archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/ archetypes/maven-archetype-vb-simple/src/main/resources/archetype-resources/ components/dotnet-core/src/main/r...

Modified: incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/pom.xml (original)
+++ incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/pom.xml Tue May  3 08:12:19 2011
@@ -19,13 +19,13 @@ under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">  
   <parent> 
-    <groupId>org.apache.npanday.plugin</groupId>
+    <groupId>org.apache.npanday.plugins</groupId>
     <version>1.3.1-incubating-SNAPSHOT</version>  
     <artifactId>maven-dotnet-plugins</artifactId>  
     <relativePath>../../../pom.xml</relativePath> 
   </parent>  
   <modelVersion>4.0.0</modelVersion>  
-  <groupId>org.apache.npanday.plugin</groupId>
+  <groupId>org.apache.npanday.plugins</groupId>
   <artifactId>NPanday.Plugin.SysRef.JavaBinding</artifactId>  
   <packaging>maven-plugin</packaging>  
   <name>NPanday :: SysRef Plugin (Java Binding)</name>

Modified: incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/src/main/java/NPanday/Plugin/SysRef/SysRefMojo.java
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/src/main/java/NPanday/Plugin/SysRef/SysRefMojo.java?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/src/main/java/NPanday/Plugin/SysRef/SysRefMojo.java (original)
+++ incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/javabinding/src/main/java/NPanday/Plugin/SysRef/SysRefMojo.java Tue May  3 08:12:19 2011
@@ -82,7 +82,7 @@ public class SysRefMojo
 
         public String getMojoGroupId()
         {
-            return "org.apache.npanday.plugin";
+            return "org.apache.npanday.plugins";
         }
 
         public String getClassName()

Modified: incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/pom.xml (original)
+++ incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.SysRef/pom.xml Tue May  3 08:12:19 2011
@@ -20,7 +20,7 @@ under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 
   <parent> 
-    <groupId>org.apache.npanday.plugin</groupId>
+    <groupId>org.apache.npanday.plugins</groupId>
     <version>1.3.1-incubating-SNAPSHOT</version>  
     <artifactId>npanday.plugins</artifactId> 
   </parent>  
@@ -30,25 +30,25 @@ under the License.
   <name>NPanday :: SysRef Plugin</name>  
   <dependencies> 
     <dependency> 
-      <groupId>org.apache.npanday.artifact</groupId>
+      <groupId>org.apache.npanday</groupId>
       <artifactId>NPanday.Artifact</artifactId>  
       <version>1.3.1-incubating-SNAPSHOT</version>
       <type>library</type> 
     </dependency>  
     <dependency> 
-      <groupId>org.apache.npanday.model</groupId>
+      <groupId>org.apache.npanday</groupId>
       <artifactId>NPanday.Model.AutomationExtensibility</artifactId>  
       <version>1.3.1-incubating-SNAPSHOT</version>
       <type>library</type>  
     </dependency>  
     <dependency> 
-      <groupId>org.apache.npanday.plugin</groupId>
+      <groupId>org.apache.npanday.plugins</groupId>
       <artifactId>NPanday.Plugin</artifactId>  
       <version>1.3.1-incubating-SNAPSHOT</version>
       <type>library</type>  
     </dependency> 
     <dependency>
-      <groupId>org.apache.npanday.model</groupId>
+      <groupId>org.apache.npanday</groupId>
       <artifactId>NPanday.Model.Pom</artifactId>
       <version>1.3.1-incubating-SNAPSHOT</version>
       <type>library</type>

Modified: incubator/npanday/trunk/plugins/netplugins/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/netplugins/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/netplugins/pom.xml (original)
+++ incubator/npanday/trunk/plugins/netplugins/pom.xml Tue May  3 08:12:19 2011
@@ -26,7 +26,7 @@ under the License.
     <relativePath>../../dotnet/pom.xml</relativePath> 
   </parent>  
   <modelVersion>4.0.0</modelVersion>  
-  <groupId>org.apache.npanday.plugin</groupId>
+  <groupId>org.apache.npanday.plugins</groupId>
   <artifactId>npanday.plugins</artifactId>  
   <packaging>pom</packaging>  
   <name>NPanday :: .NET Plugins</name>  

Modified: incubator/npanday/trunk/plugins/partcover-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/partcover-maven-plugin/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/partcover-maven-plugin/pom.xml (original)
+++ incubator/npanday/trunk/plugins/partcover-maven-plugin/pom.xml Tue May  3 08:12:19 2011
@@ -18,7 +18,7 @@ under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <groupId>org.apache.npanday.plugin</groupId>
+    <groupId>org.apache.npanday.plugins</groupId>
     <version>1.3.1-incubating-SNAPSHOT</version>
     <artifactId>maven-dotnet-plugins</artifactId>
   </parent>

Modified: incubator/npanday/trunk/plugins/partcover-maven-plugin/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/partcover-maven-plugin/src/site/apt/usage.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/partcover-maven-plugin/src/site/apt/usage.apt (original)
+++ incubator/npanday/trunk/plugins/partcover-maven-plugin/src/site/apt/usage.apt Tue May  3 08:12:19 2011
@@ -23,7 +23,7 @@ Usage
     <build>
       <plugins>
         <plugin> 
-          <groupId>org.apache.npanday.plugin</groupId>
+          <groupId>org.apache.npanday.plugins</groupId>
           <artifactId>partcover-maven-plugin</artifactId>  
           <configuration>
             <nUnit>${unit-console.exe}</nUnit>

Modified: incubator/npanday/trunk/plugins/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/pom.xml (original)
+++ incubator/npanday/trunk/plugins/pom.xml Tue May  3 08:12:19 2011
@@ -25,7 +25,7 @@ under the License.
     <artifactId>npanday-project</artifactId> 
   </parent>  
   <modelVersion>4.0.0</modelVersion>  
-  <groupId>org.apache.npanday.plugin</groupId>
+  <groupId>org.apache.npanday.plugins</groupId>
   <artifactId>maven-dotnet-plugins</artifactId>  
   <packaging>pom</packaging>  
   <name>NPanday :: Maven Plugins</name>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/pom.xml Tue May  3 08:12:19 2011
@@ -18,7 +18,7 @@ under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent> 
-    <groupId>org.apache.npanday.plugin</groupId>
+    <groupId>org.apache.npanday.plugins</groupId>
     <version>1.3.1-incubating-SNAPSHOT</version>  
     <artifactId>maven-dotnet-plugins</artifactId> 
   </parent>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT001/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT001/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT001/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT001/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.2-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT002/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT002/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT002/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT002/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.2-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestAppInstaller/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestAppInstaller/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestAppInstaller/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestAppInstaller/pom.xml Tue May  3 08:12:19 2011
@@ -37,7 +37,7 @@ under the License.
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.2-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestApplication/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestApplication/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestApplication/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestApplication/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>
@@ -47,7 +47,7 @@ under the License.
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-resgen-plugin</artifactId>
         <configuration>
           <embeddedResources>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestLibrary/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestLibrary/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestLibrary/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT003/TestLibrary/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestAppInstaller/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestAppInstaller/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestAppInstaller/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestAppInstaller/pom.xml Tue May  3 08:12:19 2011
@@ -36,7 +36,7 @@ under the License.
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.2-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestConsoleApplication/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestConsoleApplication/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestConsoleApplication/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT004/TestConsoleApplication/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestAppInstaller/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestAppInstaller/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestAppInstaller/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestAppInstaller/pom.xml Tue May  3 08:12:19 2011
@@ -36,7 +36,7 @@ under the License.
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.2-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestApplication/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestApplication/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestApplication/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestApplication/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>
@@ -47,7 +47,7 @@ under the License.
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-resgen-plugin</artifactId>
         <configuration>
           <embeddedResources>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestLibrary/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestLibrary/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestLibrary/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT005/TestLibrary/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT006/VBWebApplication_Wix/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT006/VBWebApplication_Wix/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT006/VBWebApplication_Wix/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT006/VBWebApplication_Wix/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>.</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>
@@ -73,7 +73,7 @@ under the License.
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-resgen-plugin</artifactId>
         <configuration>
           <embeddedResources>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT006/WixMSI/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT006/WixMSI/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/LocalizationInstaller/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/LocalizationInstaller/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/LocalizationInstaller/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/LocalizationInstaller/pom.xml Tue May  3 08:12:19 2011
@@ -55,7 +55,7 @@ under the License.
         </executions>
       </plugin>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.2-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/WIXLocalizationExample/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/WIXLocalizationExample/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/WIXLocalizationExample/pom.xml (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT007/WIXLocalizationExample/pom.xml Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ under the License.
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>
@@ -47,7 +47,7 @@ under the License.
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-resgen-plugin</artifactId>
         <configuration>
           <embeddedResources>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT008/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/it/IT008/pom.xml?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/candle.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/candle.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/candle.apt (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/candle.apt Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ Candle Mojo Usage
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.0-SNAPSHOT</version>
         <configuration>
@@ -55,7 +55,7 @@ Candle Mojo Usage
 
 +----+
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.0-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/index.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/index.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/index.apt (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/index.apt Tue May  3 08:12:19 2011
@@ -23,7 +23,7 @@ Usage
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.0-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/light.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/light.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/light.apt (original)
+++ incubator/npanday/trunk/plugins/wix-maven-plugin/src/site/apt/usage/light.apt Tue May  3 08:12:19 2011
@@ -32,7 +32,7 @@ Light Mojo Usage
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>npanday-wix-plugin</artifactId>
         <version>1.0-SNAPSHOT</version>
         <configuration>
@@ -58,7 +58,7 @@ Light Mojo Usage
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.0-SNAPSHOT</version>
         <configuration>
@@ -82,7 +82,7 @@ If you have used the outputDirectory par
 
 +-----+
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>wix-maven-plugin</artifactId>
         <version>1.0-SNAPSHOT</version>
         <configuration>

Modified: incubator/npanday/trunk/site/src/site/apt/developers/conventions.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/developers/conventions.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/developers/conventions.apt (original)
+++ incubator/npanday/trunk/site/src/site/apt/developers/conventions.apt Tue May  3 08:12:19 2011
@@ -23,14 +23,12 @@
 
 NPanday Conventions
 
-~~ TODO: set a title for identifiers, since there are other conventions. Adjust to simplify - one group for whole project,
-~~ plus subgroup for plugins and one for visual studio. Take a note that some don't follow convention now and are
-~~ retained for legacy reasons, but will be refactored away in future
-
  The following sections describe the conventions used within NPanday itself. This section is useful for developers wishing to
  contribute to NPanday, as well as developers looking for a baseline for their own projects.
  These conventions are evolving and subject to change as better ideas emerge.
 
+* Identifier Conventions
+
  * Artifact ID - specified within the pom - is equivalent to the project's module name.
 
  Project Structure
@@ -52,7 +50,7 @@ NPanday Conventions
 +------+
 <project xmlns="http://maven.apache.org/POM/4.0.0">
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.npanday.artifact</groupId>
+  <groupId>org.apache.npanday</groupId>
   <artifactId>NPanday.Artifact</artifactId>
   <packaging>library</packaging>
   <version>0.9</version>
@@ -60,12 +58,14 @@ NPanday Conventions
 </project>
 +------+
 
- * If the module does not contain children modules, the Group ID is the same as the artifact ID.
+ * We use three Group IDs: org.apache.npanday, org.apache.npanday.plugins and org.apache.npanday.visualstudio.
+ org.apache.npanday.plugins is for mojos or other plugin-related artifacts. org.apache.npanday.visualstudio groups
+ Visual Studio Integration. And org.apache.npanday is for everything else.
 
 +------+
-<project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;>
+<project xmlns="http://maven.apache.org/POM/4.0.0">
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.npanday.artifact</groupId>
+  <groupId>org.apache.npanday</groupId>
   <artifactId>NPanday.Artifact<artifactId>
   <packaging>library</packaging>
   <version>0.9</version>
@@ -73,45 +73,19 @@ NPanday Conventions
 </project>
 +------+
 
- * If a module contains children modules, the child module Group ID should either be equivalent to a pluralized
-        parent module Group ID or be a deriviative of the parent module Group ID.
-
-+------+
-parent Group ID: NPanday.Model
-child Group ID: NPanday.Model, NPanday.Models or NPanday.Model.VSContent
-+------+
-
- * The directory structure of the source directory (typically src/main/csharp) will follow the same pattern as the group ID.
+* Plugin Naming Convention
 
-+------+
- |-- NPanday.Artifact
- |   `-- src
- |       `-- main
- |           `-- csharp
- |               `-- NPanday
- |                   `-- Artifact
- |                       |-- ArtifactContext.cs
- |                       `-- Artifact.cs
- `-- pom.xml
-+------+
+  For plugins going forward, NPanday will use the normal convention of <subject><<<-maven-plugin>>>, e.g.
+  <<<wix-maven-plugin>>>.
 
-+------+
-<project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.npanday.artifact</groupId>
-  <artifactId>NPanday.Artifact<artifactId>
-  <packaging>library</packaging>
-  <version>0.9</version>
-  <name>NPanday.Artifact</name>
-</project>
-+------+
+* Platform-specific Plugins
 
  * If an assembly will only compile under a specific platform, those values should be specified within the compiler-config.
 
 +------+
  <project xmlns="http://maven.apache.org/POM/4.0.0">
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.npanday.plugins</groupId>
+  <groupId>org.apache.npanday.pluginss</groupId>
   <artifactId>NPanday.Plugins</artifactId>
   <packaging>pom</packaging>
   <version>0.9</version>
@@ -121,7 +95,7 @@ child Group ID: NPanday.Model, NPanday.M
     <testSourceDirectory>src/test/csharp</testSourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>
@@ -133,11 +107,4 @@ child Group ID: NPanday.Model, NPanday.M
     </plugins>
   </build>
 </project>
-+------+
-
- * Use the default setup within the npanday-settings.xml is to configure cross-platform builds.
-
-* Plugin Naming Convention
-
-  For plugins going forward, NPanday will use the normal convention of <subject><<<-maven-plugin>>>, e.g.
-  <<<wix-maven-plugin>>>.
++------+
\ No newline at end of file

Modified: incubator/npanday/trunk/site/src/site/apt/faqs.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/faqs.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/faqs.apt (original)
+++ incubator/npanday/trunk/site/src/site/apt/faqs.apt Tue May  3 08:12:19 2011
@@ -76,7 +76,7 @@ NPanday Frequently Asked Questions
   
 +--------------+ 
 <plugin>
-  <groupId>org.apache.npanday.plugin</groupId>
+  <groupId>org.apache.npanday.plugins</groupId>
   <artifactId>maven-compile-plugin</artifactId>
   <extensions>true</extensions>
   <configuration>

Modified: incubator/npanday/trunk/site/src/site/apt/guide/advanced/integration-tests.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/guide/advanced/integration-tests.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/guide/advanced/integration-tests.apt (original)
+++ incubator/npanday/trunk/site/src/site/apt/guide/advanced/integration-tests.apt Tue May  3 08:12:19 2011
@@ -38,7 +38,7 @@ Integration Tests
     <plugins>
       [...]
       <plugin>
-      <groupId>org.apache.npanday.plugin</groupId>
+      <groupId>org.apache.npanday.plugins</groupId>
       <artifactId>maven-test-plugin</artifactId>
       <extensions>true</extensions>
       <configuration>

Modified: incubator/npanday/trunk/site/src/site/apt/guide/advanced/project-types.apt.vm
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/guide/advanced/project-types.apt.vm?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/guide/advanced/project-types.apt.vm (original)
+++ incubator/npanday/trunk/site/src/site/apt/guide/advanced/project-types.apt.vm Tue May  3 08:12:19 2011
@@ -39,7 +39,7 @@ Available Project Types
 
 ----
 <plugin>
-  <groupId>org.apache.npanday.plugin</groupId>
+  <groupId>org.apache.npanday.plugins</groupId>
   <artifactId>maven-compile-plugin</artifactId>
   <version>${project.version}</version>
   <extensions>true</extensions>
@@ -88,7 +88,7 @@ Available Project Types
 
 ----
 <plugin>
-  <groupId>org.apache.npanday.plugin</groupId>
+  <groupId>org.apache.npanday.plugins</groupId>
   <artifactId>custom-lifecycle-maven-plugin</artifactId>
   <version>${project.version}</version>
   <extensions>true</extensions>

Modified: incubator/npanday/trunk/site/src/site/apt/guide/vs/importing.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/guide/vs/importing.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/guide/vs/importing.apt (original)
+++ incubator/npanday/trunk/site/src/site/apt/guide/vs/importing.apt Tue May  3 08:12:19 2011
@@ -79,7 +79,7 @@ Importing Projects
 
 +------+
   <plugin>
-    <groupId>org.apache.npanday.plugin</groupId>
+    <groupId>org.apache.npanday.plugins</groupId>
     <artifactId>maven-wsdl-plugin</artifactId>
     <extensions>true</extensions>
     <executions>
@@ -155,7 +155,7 @@ Importing Projects
  
 +------+ 
   <plugin>
-    <groupId>org.apache.npanday.plugin</groupId>
+    <groupId>org.apache.npanday.plugins</groupId>
     <artifactId>NPanday.Plugin.Msbuild.JavaBinding</artifactId>
     <executions>
       <execution>

Modified: incubator/npanday/trunk/site/src/site/apt/guide/vs/quickstart.apt
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/site/src/site/apt/guide/vs/quickstart.apt?rev=1098956&r1=1098955&r2=1098956&view=diff
==============================================================================
--- incubator/npanday/trunk/site/src/site/apt/guide/vs/quickstart.apt (original)
+++ incubator/npanday/trunk/site/src/site/apt/guide/vs/quickstart.apt Tue May  3 08:12:19 2011
@@ -139,7 +139,7 @@ Quick Start Guide
     <sourceDirectory>./</sourceDirectory>
     <plugins>
       <plugin>
-        <groupId>org.apache.npanday.plugin</groupId>
+        <groupId>org.apache.npanday.plugins</groupId>
         <artifactId>maven-compile-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>