You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ca...@apache.org on 2007/08/09 23:30:00 UTC

svn commit: r564387 [1/2] - in /maven/sandbox/trunk/plugins/maven-xcode-plugin: ./ src/main/java/org/apache/maven/plugin/idea/ src/main/java/org/apache/maven/plugin/xcode/ src/site/apt/ src/test/clean-plugin-configs/ src/test/idea-plugin-configs/ src/t...

Author: carnold
Date: Thu Aug  9 14:29:52 2007
New Revision: 564387

URL: http://svn.apache.org/viewvc?view=rev&rev=564387
Log:
Global replace of idea with xcode, add PropertyListSerializer

Added:
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/AbstractXcodeMojo.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/AbstractIdeaMojo.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/Library.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/Library.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/PropertyListSerialization.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeCleanMojo.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaCleanMojo.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeModuleMojo.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaModuleMojo.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeMojo.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaMojo.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeProjectMojo.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaProjectMojo.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeWorkspaceMojo.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaWorkspaceMojo.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeXmlWriter.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaXmlWriter.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/AbstractXcodeTestCase.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/AbstractIdeaTestCase.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/LibraryTest.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/LibraryTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeCleanTest.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaCleanTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeModuleTest.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaModuleTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeProjectTest.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaProjectTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeTest.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeWorkspaceTest.java
      - copied, changed from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaWorkspaceTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/
      - copied from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/stubs/
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/xcode-plugin-configs/
      - copied from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/idea-plugin-configs/
Removed:
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/idea-plugin-configs/
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/AbstractIdeaTestCase.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaCleanTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaModuleTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaProjectTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaWorkspaceTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/LibraryTest.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/stubs/
Modified:
    maven/sandbox/trunk/plugins/maven-xcode-plugin/pom.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/index.apt
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/library.apt
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/usage.apt
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/clean-plugin-configs/min-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EarMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbWithModuleMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/IdeaArtifactStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/LibraryMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithArtifactVersionRangeStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithCvsScmConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithModulesStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithPerforceScmConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithReactorDepStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionWithPipeStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmDevConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithStarTeamScmConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithSvnScmConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithVssScmConnectionStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ModuleMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ReactorMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/SimpleMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/TestCounter.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectWithProvidedDependencyStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarWithModuleMavenProjectStub.java
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/artifact-version-range-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/dir-exclusion-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/ejb-module-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/general-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-exclude-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-ear-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-ejb-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-war-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/module-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/provided-dep-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/war-module-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/war-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/project-plugin-configs/min-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/project-plugin-configs/plugin-config-idea4.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/project-plugin-configs/plugin-config-jdk11.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/project-plugin-configs/plugin-config-jdk15.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/project-plugin-configs/plugin-config-modules.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/connection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/connection-with-pipe-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/cvs-connection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/devconnection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/min-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/perforce-connection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/starteam-connection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/svn-connection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/workspace-plugin-configs/vss-connection-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/xcode-plugin-configs/macro-plugin-config.xml
    maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/xcode-plugin-configs/min-plugin-config.xml

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/pom.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/pom.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/pom.xml Thu Aug  9 14:29:52 2007
@@ -1,3 +1,22 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+ specific language governing permissions and limitations
+ 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>
     <artifactId>maven-plugins</artifactId>
@@ -5,9 +24,9 @@
     <version>8</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
-  <artifactId>maven-idea-plugin</artifactId>
+  <artifactId>maven-xcode-plugin</artifactId>
   <packaging>maven-plugin</packaging>
-  <name>Maven IDEA Plugin</name>
+  <name>Maven Xcode Plugin</name>
   <version>2.2-SNAPSHOT</version>
   <prerequisites>
     <maven>2.0.1</maven>

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/AbstractXcodeMojo.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/AbstractIdeaMojo.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/AbstractXcodeMojo.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/AbstractIdeaMojo.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/AbstractXcodeMojo.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/AbstractIdeaMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/AbstractXcodeMojo.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -62,7 +62,7 @@
 /**
  * @author Edwin Punzalan
  */
-public abstract class AbstractIdeaMojo
+public abstract class AbstractXcodeMojo
     extends AbstractMojo
 {
     /**
@@ -150,7 +150,7 @@
     protected void writeXmlDocument( File file, Document document )
         throws IOException
     {
-        XMLWriter writer = new IdeaXmlWriter( file );
+        XMLWriter writer = new XcodeXmlWriter( file );
         writer.write( document );
         writer.close();
     }

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/Library.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/Library.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/Library.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/Library.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/Library.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/Library.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/Library.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Added: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/PropertyListSerialization.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/PropertyListSerialization.java?view=auto&rev=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/PropertyListSerialization.java (added)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/PropertyListSerialization.java Thu Aug  9 14:29:52 2007
@@ -0,0 +1,230 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.maven.plugin.xcode;
+
+import org.xml.sax.ContentHandler;
+import org.xml.sax.SAXException;
+import org.xml.sax.helpers.AttributesImpl;
+
+import javax.xml.transform.TransformerConfigurationException;
+import javax.xml.transform.stream.StreamResult;
+import javax.xml.transform.sax.SAXTransformerFactory;
+import javax.xml.transform.sax.TransformerHandler;
+import java.util.Arrays;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+import java.io.File;
+import java.io.IOException;
+import java.io.FileOutputStream;
+
+/**
+ * Static class that provides methods to serialize
+ * a Map to a Cocoa XML Property List.  Does not currently support
+ * date or data elements.
+ */
+public final class PropertyListSerialization {
+    /**
+     * Private constructor.
+     */
+    private PropertyListSerialization() {
+
+    }
+
+    /**
+     * Serializes a property list into a Cocoa XML Property List document.
+     * @param propertyList property list.
+     * @param file destination.
+     * @throws SAXException if exception during serialization.
+     * @throws TransformerConfigurationException if exception creating serializer.
+     */
+    public static void serialize(final Map propertyList,
+                                 final File file)
+           throws IOException, SAXException,
+               TransformerConfigurationException {
+        SAXTransformerFactory sf = (SAXTransformerFactory)
+                SAXTransformerFactory.newInstance();
+        TransformerHandler handler = sf.newTransformerHandler();
+
+        FileOutputStream os = new FileOutputStream(file);
+        StreamResult result = new StreamResult(os);
+        handler.setResult(result);
+
+        handler.startDocument();
+        AttributesImpl attributes = new AttributesImpl();
+        handler.startElement(null, "plist", "plist", attributes);
+        serializeMap(propertyList, handler);
+        handler.endElement(null, "plist", "plist");
+
+        handler.endDocument();
+    }
+
+    /**
+     * Serialize a map as a dict element.
+     * @param map map to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeMap(final Map map,
+                                     final ContentHandler handler)
+         throws SAXException {
+        AttributesImpl attributes = new AttributesImpl();
+        handler.startElement(null, "dict", "dict", attributes);
+
+        if (map.size() > 0) {
+            //
+            //   need to output with sorted keys to maintain
+            //     reproducability
+            //
+            Object[] keys = map.keySet().toArray();
+            Arrays.sort(keys);
+            for(int i = 0; i < keys.length; i++) {
+                String key = String.valueOf(keys[i]);
+                handler.startElement(null, "key", "key", attributes);
+                handler.characters(key.toCharArray(), 0, key.length());
+                handler.endElement(null, "key", "key");
+                serializeObject(map.get(keys[i]), handler);
+            }
+        }
+        handler.endElement(null, "dict", "dict");
+    }
+
+    /**
+     * Serialize a list as an array element.
+     * @param list list to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeList(final List list,
+                                      final ContentHandler handler)
+         throws SAXException {
+        AttributesImpl attributes = new AttributesImpl();
+        handler.startElement(null, "array", "array", attributes);
+        for(Iterator iter = list.iterator();iter.hasNext();) {
+            serializeObject(iter.next(), handler);
+        }
+        handler.endElement(null, "array", "array");
+    }
+
+    /**
+     * Creates an element with the specified tag name and character content.
+     * @param tag tag name.
+     * @param content character content.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeElement(final String tag,
+                                  final String content,
+                                  final ContentHandler handler)
+         throws SAXException {
+        AttributesImpl attributes = new AttributesImpl();
+        handler.startElement(null, tag, tag, attributes);
+        handler.characters(content.toCharArray(), 0, content.length());
+        handler.endElement(null, tag, tag);
+    }
+
+
+    /**
+     * Serialize a Number as an integer element.
+     * @param integer number to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeInteger(final Number integer,
+                                         final ContentHandler handler)
+         throws SAXException {
+        serializeElement("integer", String.valueOf(integer.longValue()),
+                handler);
+    }
+
+    /**
+     * Serialize a Number as a real element.
+     * @param real number to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeReal(final Number real,
+                                      final ContentHandler handler)
+         throws SAXException {
+        serializeElement("real",
+                String.valueOf(real.doubleValue()),
+                handler);
+    }
+
+
+    /**
+     * Serialize a Boolean as a true or false element.
+     * @param val boolean to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeBoolean(final Boolean val,
+                                         final ContentHandler handler)
+         throws SAXException {
+        String tag = "false";
+        if (val.booleanValue()) {
+            tag = "true";
+        }
+        AttributesImpl attributes = new AttributesImpl();
+        handler.startElement(null, tag, tag, attributes);
+        handler.endElement(null, tag, tag);
+    }
+
+    /**
+     * Serialize a string as a string element.
+     * @param val string to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeString(final String val,
+                                        final ContentHandler handler)
+         throws SAXException {
+        serializeElement("string",
+                val,
+                handler);
+    }
+
+
+    /**
+     * Serialize an object using the best available element.
+     * @param obj object to serialize.
+     * @param handler destination of serialization events.
+     * @throws SAXException if exception during serialization.
+     */
+    private static void serializeObject(final Object obj,
+                                        final ContentHandler handler)
+        throws SAXException {
+        if (obj instanceof Map) {
+            serializeMap((Map) obj, handler);
+        } else if (obj instanceof List) {
+            serializeList((List) obj, handler);      
+        } else if (obj instanceof Number) {
+            if(obj instanceof Double
+                ||obj instanceof Float) {
+                serializeReal((Number) obj, handler);
+            } else {
+                serializeInteger((Number) obj, handler);
+            }
+        } else if (obj instanceof Boolean) {
+            serializeBoolean((Boolean) obj, handler);
+        } else {
+            serializeString(String.valueOf(obj), handler);
+        }
+    }
+}

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeCleanMojo.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaCleanMojo.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeCleanMojo.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaCleanMojo.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeCleanMojo.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaCleanMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeCleanMojo.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -33,7 +33,7 @@
  * @goal clean
  * @author Edwin Punzalan
  */
-public class IdeaCleanMojo
+public class XcodeCleanMojo
     extends AbstractMojo
 {
     /**

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeModuleMojo.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaModuleMojo.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeModuleMojo.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaModuleMojo.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeModuleMojo.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaModuleMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeModuleMojo.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -56,8 +56,8 @@
  * @goal module
  * @execute phase="generate-sources"
  */
-public class IdeaModuleMojo
-    extends AbstractIdeaMojo
+public class XcodeModuleMojo
+    extends AbstractXcodeMojo
 {
     /**
      * The reactor projects in a multi-module build.

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeMojo.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaMojo.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeMojo.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaMojo.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeMojo.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeMojo.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -34,8 +34,8 @@
  * @goal idea
  * @execute phase="generate-sources"
  */
-public class IdeaMojo
-    extends AbstractIdeaMojo
+public class XcodeMojo
+        extends AbstractXcodeMojo
 {
     /**
      * The reactor projects in a multi-module build.
@@ -210,7 +210,7 @@
     private void rewriteModule( Set macros )
         throws MojoExecutionException
     {
-        IdeaModuleMojo mojo = new IdeaModuleMojo();
+        XcodeModuleMojo mojo = new XcodeModuleMojo();
 
         mojo.initParam( executedProject, artifactFactory, localRepo, artifactResolver, artifactMetadataSource, getLog(),
                         overwrite, executedProject, reactorProjects, wagonManager, linkModules, useFullNames,
@@ -223,7 +223,7 @@
     private void rewriteProject( Set macros )
         throws MojoExecutionException
     {
-        IdeaProjectMojo mojo = new IdeaProjectMojo();
+        XcodeProjectMojo mojo = new XcodeProjectMojo();
 
         mojo.initParam( executedProject, artifactFactory, localRepo, artifactResolver, artifactMetadataSource, getLog(),
                         overwrite, jdkName, jdkLevel, wildcardResourcePatterns, ideaVersion, macros );
@@ -234,7 +234,7 @@
     private void rewriteWorkspace()
         throws MojoExecutionException
     {
-        IdeaWorkspaceMojo mojo = new IdeaWorkspaceMojo();
+        XcodeWorkspaceMojo mojo = new XcodeWorkspaceMojo();
 
         mojo.initParam( executedProject, artifactFactory, localRepo, artifactResolver, artifactMetadataSource, getLog(),
                         overwrite );

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeProjectMojo.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaProjectMojo.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeProjectMojo.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaProjectMojo.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeProjectMojo.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaProjectMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeProjectMojo.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -44,8 +44,8 @@
  * @goal project
  * @execute phase="generate-sources"
  */
-public class IdeaProjectMojo
-    extends AbstractIdeaMojo
+public class XcodeProjectMojo
+    extends AbstractXcodeMojo
 {
     /**
      * Specify the name of the registered IDEA JDK to use

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeWorkspaceMojo.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaWorkspaceMojo.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeWorkspaceMojo.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaWorkspaceMojo.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeWorkspaceMojo.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaWorkspaceMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeWorkspaceMojo.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -34,8 +34,8 @@
  * @goal workspace
  * @execute phase="generate-sources"
  */
-public class IdeaWorkspaceMojo
-    extends AbstractIdeaMojo
+public class XcodeWorkspaceMojo
+    extends AbstractXcodeMojo
 {
     /**
      * Create IDEA workspace (.iws) file.

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeXmlWriter.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaXmlWriter.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeXmlWriter.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaXmlWriter.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeXmlWriter.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/idea/IdeaXmlWriter.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/main/java/org/apache/maven/plugin/xcode/XcodeXmlWriter.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -30,7 +30,7 @@
  * Custom implementation of <a href="http://dom4j.org/apidocs/org/dom4j/io/XMLWriter.html">XMLWriter</a> for use with
  * the Idea plugin.
  */
-public class IdeaXmlWriter
+public class XcodeXmlWriter
     extends XMLWriter
 {
     /**
@@ -38,7 +38,7 @@
      *
      * @param file output file to be written
      */
-    public IdeaXmlWriter( File file )
+    public XcodeXmlWriter( File file )
         throws IOException
     {
         super( new FileWriter( file ), OutputFormat.createPrettyPrint() );

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/index.apt?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/index.apt (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/index.apt Thu Aug  9 14:29:52 2007
@@ -1,9 +1,7 @@
  ------
  Introduction
  ------
- Edwin Punzalan
  ------
- 05 July 2006
  ------
 
 ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -24,38 +22,38 @@
 ~~ under the License.
 
 
-Maven IDEA Plugin
+Maven Xcode Plugin
 
-  The IDEA Plugin is used to generate files (ipr, iml, and iws) for a project
-  so you can work on it using the IDE, IntelliJ IDEA.
+  The Xcode Plugin is used to generate an .xcodeproj directory for a project
+  so you can work on it using Xcode 2.1 or later from Apple, Inc.
 
 * Goals Overview
 
-  The IDEA Plugin has five goals.
+  The Xcode Plugin has five goals.
 
-  * {{{idea-mojo.html}idea:idea}} is used to execute the other three goals of
+  * {{{xcode-mojo.html}xcode:xcode}} is used to execute the other three goals of
   this plugin: <<<project>>>, <<<module>>>, and <<<workspace>>>.
 
-  * {{{project-mojo.html}idea:project}} is used to generate the project files
-  (*.ipr) needed for an IntelliJ IDEA Project.
+  * {{{project-mojo.html}xcode:project}} is used to generate the project files
+  (*.ipr) needed for an Xcode Project.
 
-  * {{{module-mojo.html}idea:module}} is used to generate the module files
-  (*.iml) needed for an IntelliJ IDEA Module.
+  * {{{module-mojo.html}xcode:module}} is used to generate the module files
+  (*.iml) needed for an Xcode Module.
 
-  * {{{workspace-mojo.html}idea:workspace}} is used to generate the workspace
-  files (*.iws) needed for an IntelliJ IDEA Project.
+  * {{{workspace-mojo.html}xcode:workspace}} is used to generate the workspace
+  files (*.iws) needed for an Xcode Project.
 
-  * {{{clean-mojo.html}idea:clean}} is used to delete the files relevant to
-  IntelliJ IDEA.
+  * {{{clean-mojo.html}xcode:clean}} is used to delete the files relevant to
+  Xcode.
 
 * How To Use
 
-  Instructions on how to use the Maven IDEA Plugin can be found
+  Instructions on how to use the Maven Xcode Plugin can be found
   {{{usage.html}here}}.
 
 * Examples
 
-  To provide you with better understanding on some usages of the Maven IDEA
+  To provide you with better understanding on some usages of the Maven Xcode
   Plugin, you can take a look into the following examples:
 
   * {{{examples/attach-library-src-doc.html}Attach Library Sources And/Or Javadocs}}

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/library.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/library.apt?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/library.apt (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/library.apt Thu Aug  9 14:29:52 2007
@@ -1,9 +1,7 @@
  ------
  Defining Libraries
  ------
- Edwin Punzalan
  ------
- 11 July 2006
  ------
 
 ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -27,7 +25,7 @@
 Defining Libraries Using the <<<libraries>>> Parameter
 
   You can control the libraries that are generated by
-  <<<maven-idea-plugin>>> with the use of the <<<libraries>>>
+  <<<maven-xcode-plugin>>> with the use of the <<<libraries>>>
   parameter.
 
   The <<<library>>> element can be defined with the following elements:

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/usage.apt?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/usage.apt (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/site/apt/usage.apt Thu Aug  9 14:29:52 2007
@@ -1,9 +1,7 @@
  ------
  Usage
  ------
- Edwin Punzalan
  ------
- 05 July 2006
  ------
 
 ~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -26,18 +24,18 @@
 
 Usage
 
-* Generating the IntelliJ IDEA project files
+* Generating the Xcode project directory
 
-  To generate the files needed for an IntelliJ IDEA Project setup, you only
-  need to execute the main plugin goal, which is <<<idea:idea>>> like so:
+  To generate the files needed for an Xcode Project setup, you only
+  need to execute the main plugin goal, which is <<<xcode:xcode>>> like so:
 
 +-----
-mvn idea:idea
+mvn xcode:xcode
 +-----
 
   The above command will execute the other three goals needed to setup your
-  project for IntelliJ IDEA: <<<idea:project>>>, <<<idea:module>>>, and
-  <<<idea:workspace>>>.
+  project for Xcode: <<<xcode:project>>>, <<<xcode:module>>>, and
+  <<<xcode:workspace>>>.
 
   Please note that this plugin has no way to determine the name of the JDK
   you are using.  By default, this uses the JDK name equivalent to
@@ -45,19 +43,19 @@
   to use, for example, 1.5, you can then execute:
 
 +-----
-mvn idea:idea -DjdkName=1.5
+mvn xcode:xcode -DjdkName=1.5
 +-----
 
-* Deleting IDEA project files
+* Deleting Xcode project directory
 
-  To delete the project files used by IntelliJ IDEA, you can execute the
+  To delete the project directory used by Xcode, you can execute the
   command below:
 
 +-----
-mvn idea:clean
+mvn xcode:clean
 +-----
 
-* Creating the IDEA project files separately
+* Creating the Xcode project files separately
 
   If, for some reason, you want to create just one of the <<<ipr>>>,
   <<<iml>>>, or <<<iws>>> files, you can still do it.
@@ -65,17 +63,17 @@
   To generate just the <<<ipr>>> file, use:
 
 +-----
-mvn idea:project
+mvn xcode:project
 +-----
 
   To generate just the <<<iml>>> files, use:
 
 +-----
-mvn idea:module
+mvn xcode:module
 +-----
 
   To generate just the <<<iws>>> file, use:
 
 +-----
-mvn idea:workspace
+mvn xcode:workspace
 +-----

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/clean-plugin-configs/min-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/clean-plugin-configs/min-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/clean-plugin-configs/min-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/clean-plugin-configs/min-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,9 +21,9 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <project implementation="org.apache.maven.plugin.idea.stubs.SimpleMavenProjectStub"/>
+          <project implementation="org.apache.maven.plugin.xcode.stubs.SimpleMavenProjectStub"/>
         </configuration>
       </plugin>
     </plugins>

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/AbstractXcodeTestCase.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/AbstractIdeaTestCase.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/AbstractXcodeTestCase.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/AbstractIdeaTestCase.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/AbstractXcodeTestCase.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/AbstractIdeaTestCase.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/AbstractXcodeTestCase.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -23,7 +23,7 @@
 import org.dom4j.Element;
 import org.dom4j.DocumentException;
 import org.dom4j.io.SAXReader;
-import org.apache.maven.plugin.idea.stubs.TestCounter;
+import org.apache.maven.plugin.xcode.stubs.TestCounter;
 import org.apache.maven.plugin.testing.AbstractMojoTestCase;
 import org.apache.maven.plugin.Mojo;
 import org.codehaus.plexus.PlexusTestCase;
@@ -35,7 +35,7 @@
 /**
  * @author Edwin Punzalan
  */
-public abstract class AbstractIdeaTestCase
+public abstract class AbstractXcodeTestCase
     extends AbstractMojoTestCase
 {
     protected Mojo mojo;

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/LibraryTest.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/LibraryTest.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/LibraryTest.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/LibraryTest.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/LibraryTest.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/LibraryTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/LibraryTest.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeCleanTest.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaCleanTest.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeCleanTest.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaCleanTest.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeCleanTest.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaCleanTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeCleanTest.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -20,7 +20,7 @@
  */
 
 import org.apache.maven.plugin.Mojo;
-import org.apache.maven.plugin.idea.stubs.TestCounter;
+import org.apache.maven.plugin.xcode.stubs.TestCounter;
 import org.apache.maven.plugin.testing.AbstractMojoTestCase;
 import org.codehaus.plexus.util.FileUtils;
 
@@ -29,7 +29,7 @@
 /**
  * @author Edwin Punzalan
  */
-public class IdeaCleanTest
+public class XcodeCleanTest
     extends AbstractMojoTestCase
 {
     public void testClean()

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeModuleTest.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaModuleTest.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeModuleTest.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaModuleTest.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeModuleTest.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaModuleTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeModuleTest.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -19,7 +19,7 @@
  * under the License.
  */
 
-import org.apache.maven.plugin.idea.stubs.TestCounter;
+import org.apache.maven.plugin.xcode.stubs.TestCounter;
 import org.codehaus.plexus.PlexusTestCase;
 import org.dom4j.Document;
 import org.dom4j.Element;
@@ -32,8 +32,8 @@
 /**
  * @author Edwin Punzalan
  */
-public class IdeaModuleTest
-    extends AbstractIdeaTestCase
+public class XcodeModuleTest
+    extends AbstractXcodeTestCase
 {
     public void testJarMinConfig()
         throws Exception

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeProjectTest.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaProjectTest.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeProjectTest.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaProjectTest.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeProjectTest.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaProjectTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeProjectTest.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -19,7 +19,7 @@
  * under the License.
  */
 
-import org.apache.maven.plugin.idea.stubs.TestCounter;
+import org.apache.maven.plugin.xcode.stubs.TestCounter;
 import org.dom4j.Document;
 import org.dom4j.Element;
 
@@ -28,8 +28,8 @@
 /**
  * @author Edwin Punzalan
  */
-public class IdeaProjectTest
-    extends AbstractIdeaTestCase
+public class XcodeProjectTest
+    extends AbstractXcodeTestCase
 {
     public void testIdeaProjectTestEnvironment()
         throws Exception

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeTest.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaTest.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeTest.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaTest.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeTest.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeTest.java Thu Aug  9 14:29:52 2007
@@ -21,7 +21,7 @@
 
 import org.apache.maven.plugin.testing.AbstractMojoTestCase;
 import org.apache.maven.plugin.Mojo;
-import org.apache.maven.plugin.idea.stubs.TestCounter;
+import org.apache.maven.plugin.xcode.stubs.TestCounter;
 import org.dom4j.io.SAXReader;
 import org.dom4j.Document;
 import org.dom4j.Element;
@@ -31,13 +31,13 @@
 /**
  * @author Edwin Punzalan
  */
-public class IdeaTest
+public class XcodeTest
     extends AbstractMojoTestCase
 {
     public void testIdea()
         throws Exception
     {
-        File pluginXmlFile = new File( getBasedir(), "src/test/idea-plugin-configs/min-plugin-config.xml" );
+        File pluginXmlFile = new File( getBasedir(), "src/test/xcode-plugin-configs/min-plugin-config.xml" );
 
         Mojo mojo = lookupMojo( "idea", pluginXmlFile );
 
@@ -60,7 +60,7 @@
     public void testIdeaWithMacro()
         throws Exception
     {
-        File pluginXmlFile = new File( getBasedir(), "src/test/idea-plugin-configs/macro-plugin-config.xml" );
+        File pluginXmlFile = new File( getBasedir(), "src/test/xcode-plugin-configs/macro-plugin-config.xml" );
 
         Mojo mojo = lookupMojo( "idea", pluginXmlFile );
 

Copied: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeWorkspaceTest.java (from r563948, maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaWorkspaceTest.java)
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeWorkspaceTest.java?view=diff&rev=564387&p1=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaWorkspaceTest.java&r1=563948&p2=maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeWorkspaceTest.java&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/idea/IdeaWorkspaceTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/XcodeWorkspaceTest.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea;
+package org.apache.maven.plugin.xcode;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -25,8 +25,8 @@
 /**
  * @author Edwin Punzalan
  */
-public class IdeaWorkspaceTest
-    extends AbstractIdeaTestCase
+public class XcodeWorkspaceTest
+    extends AbstractXcodeTestCase
 {
     public void testMinConfig()
         throws Exception

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EarMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EarMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EarMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EarMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbWithModuleMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbWithModuleMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbWithModuleMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/EjbWithModuleMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/IdeaArtifactStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/IdeaArtifactStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/IdeaArtifactStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/IdeaArtifactStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/LibraryMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/LibraryMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/LibraryMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/LibraryMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithArtifactVersionRangeStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithArtifactVersionRangeStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithArtifactVersionRangeStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithArtifactVersionRangeStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithCvsScmConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithCvsScmConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithCvsScmConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithCvsScmConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithModulesStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithModulesStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithModulesStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithModulesStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithPerforceScmConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithPerforceScmConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithPerforceScmConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithPerforceScmConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithReactorDepStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithReactorDepStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithReactorDepStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithReactorDepStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionWithPipeStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionWithPipeStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionWithPipeStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmConnectionWithPipeStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmDevConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmDevConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmDevConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithScmDevConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithStarTeamScmConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithStarTeamScmConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithStarTeamScmConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithStarTeamScmConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithSvnScmConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithSvnScmConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithSvnScmConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithSvnScmConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithVssScmConnectionStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithVssScmConnectionStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithVssScmConnectionStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/MavenProjectWithVssScmConnectionStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ModuleMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ModuleMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ModuleMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ModuleMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ReactorMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ReactorMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ReactorMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/ReactorMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/SimpleMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/SimpleMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/SimpleMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/SimpleMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/TestCounter.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/TestCounter.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/TestCounter.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/TestCounter.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectWithProvidedDependencyStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectWithProvidedDependencyStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectWithProvidedDependencyStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarMavenProjectWithProvidedDependencyStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarWithModuleMavenProjectStub.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarWithModuleMavenProjectStub.java?view=diff&rev=564387&r1=563948&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarWithModuleMavenProjectStub.java (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/java/org/apache/maven/plugin/xcode/stubs/WarWithModuleMavenProjectStub.java Thu Aug  9 14:29:52 2007
@@ -1,4 +1,4 @@
-package org.apache.maven.plugin.idea.stubs;
+package org.apache.maven.plugin.xcode.stubs;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/artifact-version-range-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/artifact-version-range-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/artifact-version-range-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/artifact-version-range-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,9 +21,9 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.MavenProjectWithArtifactVersionRangeStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.MavenProjectWithArtifactVersionRangeStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <linkModules>true</linkModules>

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/dir-exclusion-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/dir-exclusion-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/dir-exclusion-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/dir-exclusion-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,15 +21,15 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.SimpleMavenProjectStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.SimpleMavenProjectStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <reactorProjects>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
           </reactorProjects>
           <linkModules>true</linkModules>
           <useFullNames>false</useFullNames>

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/ejb-module-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/ejb-module-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/ejb-module-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/ejb-module-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,15 +21,15 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.EjbWithModuleMavenProjectStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.EjbWithModuleMavenProjectStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <reactorProjects>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
           </reactorProjects>
           <linkModules>true</linkModules>
           <useFullNames>false</useFullNames>

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/general-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/general-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/general-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/general-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,15 +21,15 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.SimpleMavenProjectStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.SimpleMavenProjectStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <reactorProjects>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
           </reactorProjects>
           <linkModules>true</linkModules>
           <useFullNames>true</useFullNames>

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-exclude-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-exclude-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-exclude-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-exclude-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,15 +21,15 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.LibraryMavenProjectStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.LibraryMavenProjectStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <reactorProjects>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
           </reactorProjects>
           <linkModules>true</linkModules>
           <useFullNames>false</useFullNames>

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/library-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,15 +21,15 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.LibraryMavenProjectStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.LibraryMavenProjectStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <reactorProjects>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
           </reactorProjects>
           <linkModules>true</linkModules>
           <useFullNames>false</useFullNames>

Modified: maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-ear-plugin-config.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-ear-plugin-config.xml?view=diff&rev=564387&r1=564386&r2=564387
==============================================================================
--- maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-ear-plugin-config.xml (original)
+++ maven/sandbox/trunk/plugins/maven-xcode-plugin/src/test/module-plugin-configs/min-ear-plugin-config.xml Thu Aug  9 14:29:52 2007
@@ -21,15 +21,15 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
+        <artifactId>maven-xcode-plugin</artifactId>
         <configuration>
-          <executedProject implementation="org.apache.maven.plugin.idea.stubs.EarMavenProjectStub"/>
+          <executedProject implementation="org.apache.maven.plugin.xcode.stubs.EarMavenProjectStub"/>
           <localRepo>${localRepository}</localRepo>
           <overwrite>false</overwrite>
           <reactorProjects>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
-            <reactorProject implementation="org.apache.maven.plugin.idea.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
+            <reactorProject implementation="org.apache.maven.plugin.xcode.stubs.ReactorMavenProjectStub"/>
           </reactorProjects>
           <linkModules>true</linkModules>
           <useFullNames>false</useFullNames>