http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestCompilerMojo.java
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestCompilerMojo.java
 
b/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestCompilerMojo.java
deleted file mode 100644
index ed4b77c..0000000
--- 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestCompilerMojo.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * 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.flex.maven.plugins.flex.test;
-
-import org.apache.flex.maven.plugins.flex.compiler.CompilerMojo;
-import org.apache.maven.plugins.annotations.LifecyclePhase;
-import org.apache.maven.plugins.annotations.Mojo;
-import org.apache.maven.plugins.annotations.ResolutionScope;
-
-@Mojo(name = "test-compile",
-        defaultPhase = LifecyclePhase.TEST_COMPILE,
-        requiresDependencyResolution = ResolutionScope.TEST,
-        threadSafe = true)
-public class TestCompilerMojo extends CompilerMojo {
-
-    public void execute() {
-        if (useLegacyCompiler) {
-            if (project.getPackaging().equalsIgnoreCase("SWC")) {
-                compilerMap.get("compc").compile(project);
-            } else if (project.getPackaging().equalsIgnoreCase("SWF")) {
-                compilerMap.get("mxmlc").compile(project);
-            } else {
-                throw new RuntimeException("Wrong packaging");
-            }
-        } else {
-            compilerMap.get("falcon").compile(project);
-        }
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestGeneratorMojo.java
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestGeneratorMojo.java
 
b/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestGeneratorMojo.java
deleted file mode 100644
index e87f2d7..0000000
--- 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestGeneratorMojo.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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.flex.maven.plugins.flex.test;
-
-import org.apache.flex.maven.plugins.flex.compiler.CompilerMojo;
-import org.apache.maven.plugins.annotations.LifecyclePhase;
-import org.apache.maven.plugins.annotations.Mojo;
-import org.apache.maven.plugins.annotations.ResolutionScope;
-
-@Mojo(name = "test-generate",
-        defaultPhase = LifecyclePhase.GENERATE_TEST_SOURCES,
-        requiresDependencyResolution = ResolutionScope.TEST,
-        threadSafe = true)
-public class TestGeneratorMojo extends CompilerMojo {
-
-    public void execute() {
-        getLog().debug("Executing test-generate");
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestRunnerMojo.java
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestRunnerMojo.java
 
b/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestRunnerMojo.java
deleted file mode 100644
index 08160c8..0000000
--- 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/java/org/apache/flex/maven/plugins/flex/test/TestRunnerMojo.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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.flex.maven.plugins.flex.test;
-
-import org.apache.flex.maven.plugins.flex.AbstractFlexMojo;
-import org.apache.maven.plugins.annotations.LifecyclePhase;
-import org.apache.maven.plugins.annotations.Mojo;
-
-@Mojo(name = "test",
-        defaultPhase = LifecyclePhase.TEST,
-        threadSafe = true)
-public class TestRunnerMojo extends AbstractFlexMojo {
-
-    public void execute() {
-        getLog().debug("Executing test");
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/maven-flex-plugin/src/main/resources/META-INF/plexus/components.xml
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/resources/META-INF/plexus/components.xml
 
b/maven-flex-plugin/plugins/maven-flex-plugin/src/main/resources/META-INF/plexus/components.xml
deleted file mode 100644
index dfec973..0000000
--- 
a/maven-flex-plugin/plugins/maven-flex-plugin/src/main/resources/META-INF/plexus/components.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-<component-set>
-    <components>
-
-        <!--
-
-                Default lifecycle for a flex artifact with packaging "swf"
-
-        -->
-        <component>
-            <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
-            <role-hint>swf</role-hint>
-            
<implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
-            <configuration>
-                <phases>
-                    <!--validate></validate>
-                    <initialize></initialize-->
-                    
<generate-sources>org.apache.maven.plugins:maven-flex-plugin:generate</generate-sources>
-                    
<process-sources>org.apache.maven.plugins:maven-flex-plugin:compile</process-sources>
-                    <!--generate-resources></generate-resources>
-                    <process-resources></process-resources-->
-                    
<compile>org.apache.maven.plugins:maven-flex-plugin:compile</compile>
-                    <!--process-classes></process-classes-->
-                    
<generate-test-sources>org.apache.maven.plugins:maven-flex-plugin:test-generate</generate-test-sources>
-                    <!--process-test-sources></process-test-sources>
-                    <generate-test-resources></generate-test-resources>
-                    <process-test-resources></process-test-resources-->
-                    
<test-compile>org.apache.maven.plugins:maven-flex-plugin:test-compile</test-compile>
-                    <!--process-test-classes></process-test-classes-->
-                    
<test>org.apache.maven.plugins:maven-flex-plugin:test</test>
-                    <!--prepare-package></prepare-package-->
-                    
<package>org.apache.maven.plugins:maven-flex-plugin:optimize</package>
-                    <!--pre-integration-test></pre-integration-test>
-                    <integration-test></integration-test>
-                    <post-integration-test></post-integration-test>
-                    <verify></verify>
-                    <install></install>
-                    <deploy></deploy-->
-                </phases>
-            </configuration>
-        </component>
-
-        <!--
-
-                Default lifecycle for a flex artifact with packaging "swc"
-
-        -->
-        <component>
-            <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
-            <role-hint>swc</role-hint>
-            
<implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
-            <configuration>
-                <phases>
-                    <!--validate></validate>
-                    <initialize></initialize-->
-                    
<generate-sources>org.apache.maven.plugins:maven-flex-plugin:generate</generate-sources>
-                    
<process-sources>org.apache.maven.plugins:maven-flex-plugin:compile</process-sources>
-                    <!--generate-resources></generate-resources>
-                    <process-resources></process-resources-->
-                    
<compile>org.apache.maven.plugins:maven-flex-plugin:compile</compile>
-                    <!--process-classes></process-classes-->
-                    
<generate-test-sources>org.apache.maven.plugins:maven-flex-plugin:test-generate</generate-test-sources>
-                    <!--process-test-sources></process-test-sources>
-                    <generate-test-resources></generate-test-resources>
-                    <process-test-resources></process-test-resources-->
-                    
<test-compile>org.apache.maven.plugins:maven-flex-plugin:test-compile</test-compile>
-                    <!--process-test-classes></process-test-classes-->
-                    
<test>org.apache.maven.plugins:maven-flex-plugin:test</test>
-                    <!--prepare-package></prepare-package-->
-                    
<package>org.apache.maven.plugins:maven-flex-plugin:optimize</package>
-                    <!--pre-integration-test></pre-integration-test>
-                    <integration-test></integration-test>
-                    <post-integration-test></post-integration-test>
-                    <verify></verify>
-                    <install></install>
-                    <deploy></deploy-->
-                </phases>
-            </configuration>
-        </component>
-
-        <!--
-
-                Tell Maven how to deal with the different types of flex 
artifacts
-
-        -->
-        <component>
-            <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
-            <role-hint>swc</role-hint>
-            
<implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
-            <configuration>
-                <!-- Extension used by artifacts in the repository -->
-                <extension>swc</extension>
-                <!-- Type used when specifying dependencies -->
-                <type>swc</type>
-                <!-- Type used when specifying the packaging of an artifact -->
-                <packaging>swc</packaging>
-            </configuration>
-        </component>
-        <component>
-            <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
-            <role-hint>swf</role-hint>
-            
<implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
-            <configuration>
-                <extension>swf</extension>
-                <type>swf</type>
-                <packaging>swf</packaging>
-            </configuration>
-        </component>
-    </components>
-</component-set>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/maven-mavenizer-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/maven-flex-plugin/plugins/maven-mavenizer-plugin/pom.xml 
b/maven-flex-plugin/plugins/maven-mavenizer-plugin/pom.xml
deleted file mode 100644
index c4d3371..0000000
--- a/maven-flex-plugin/plugins/maven-mavenizer-plugin/pom.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  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/xsd/maven-4.0.0.xsd";>
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.flex.plugins</groupId>
-        <artifactId>plugins</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
-    </parent>
-
-    <!-- This package name is intentional -->
-    <groupId>org.apache.maven.plugins</groupId>
-    <artifactId>maven-mavenizer-plugin</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>maven-plugin</packaging>
-
-    <name>Maven-Flex-Plugin / Plugins / flex-mavenizer-plugin</name>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-plugin-plugin</artifactId>
-                <version>3.2</version>
-                <configuration>
-                    <encoding>${project.encoding}</encoding>
-                    
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>mojo-descriptor</id>
-                        <phase>process-classes</phase>
-                        <goals>
-                            <goal>descriptor</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.maven</groupId>
-            <artifactId>maven-plugin-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.maven.plugin-tools</groupId>
-            <artifactId>maven-plugin-annotations</artifactId>
-            <scope>compile</scope>
-        </dependency>
-    </dependencies>
-
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/maven-mavenizer-plugin/src/main/java/org/apache/flex/maven/plugins/mavenizer/MavenizerMojo.java
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/plugins/maven-mavenizer-plugin/src/main/java/org/apache/flex/maven/plugins/mavenizer/MavenizerMojo.java
 
b/maven-flex-plugin/plugins/maven-mavenizer-plugin/src/main/java/org/apache/flex/maven/plugins/mavenizer/MavenizerMojo.java
deleted file mode 100644
index f2abad4..0000000
--- 
a/maven-flex-plugin/plugins/maven-mavenizer-plugin/src/main/java/org/apache/flex/maven/plugins/mavenizer/MavenizerMojo.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * 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.flex.maven.plugins.mavenizer;
-
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugins.annotations.LifecyclePhase;
-import org.apache.maven.plugins.annotations.Mojo;
-import org.apache.maven.plugins.annotations.Parameter;
-
-import java.io.File;
-
-@Mojo(name = "mavenizer",
-        defaultPhase = LifecyclePhase.NONE,
-        threadSafe = false)
-public class MavenizerMojo extends AbstractMojo {
-
-    @Parameter(property = "org.apache.flex.sdk-home-dir", readonly = true, 
required = true)
-    protected File sdkHomeDirectory;
-
-    @Parameter(property = "settings.localRepository", readonly = true, 
required = true)
-    protected String localRepository;
-
-    public void execute() {
-        System.out.println("Installing FDK from " + sdkHomeDirectory + " to " 
+ localRepository);
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/plugins/pom.xml
----------------------------------------------------------------------
diff --git a/maven-flex-plugin/plugins/pom.xml 
b/maven-flex-plugin/plugins/pom.xml
deleted file mode 100644
index d01e664..0000000
--- a/maven-flex-plugin/plugins/pom.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  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/xsd/maven-4.0.0.xsd";>
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.flex</groupId>
-        <artifactId>flex-plugin-parent</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.flex.plugins</groupId>
-    <artifactId>plugins</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>pom</packaging>
-
-    <name>Maven-Flex-Plugin / Plugins</name>
-
-    <modules>
-        <!-- Plugin for actually performing the flex builds -->
-        <module>maven-flex-plugin</module>
-        <!-- Plugin for generating the maven artifacts for performing flex 
maven builds -->
-        <module>maven-mavenizer-plugin</module>
-    </modules>
-
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/maven-flex-plugin/pom.xml b/maven-flex-plugin/pom.xml
deleted file mode 100644
index e17e247..0000000
--- a/maven-flex-plugin/pom.xml
+++ /dev/null
@@ -1,127 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  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/xsd/maven-4.0.0.xsd";>
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>org.apache.flex</groupId>
-    <artifactId>flex-plugin-parent</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>pom</packaging>
-
-    <name>Maven-Flex-Plugin (Parent)</name>
-    <description>Maven plugin to allow building of artifacts using Apache 
Flex</description>
-    <url>http://incubator.apache.org/flex/</url>
-    <inceptionYear>2012</inceptionYear>
-
-    <organization>
-        <name>The Apache Software Foundation</name>
-        <url>http://apache.org/</url>
-    </organization>
-
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-        </license>
-    </licenses>
-
-    <developers>
-        <developer>
-            <id>cdutz</id>
-            <name>Chrisotfer Dutz</name>
-            <email>[email protected]</email>
-            <roles>
-                <role>developer</role>
-            </roles>
-            <timezone>+1</timezone>
-        </developer>
-    </developers>
-
-    <scm>
-        <connection>
-            
scm:svn:https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/maven-flex-plugin
-        </connection>
-        <developerConnection>
-            
scm:svn:https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/maven-flex-plugin
-        </developerConnection>
-        
<url>https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/maven-flex-plugin</url>
-    </scm>
-
-    <properties>
-        <project.encoding>UTF-8</project.encoding>
-        
<project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding>
-        <jdk.version>1.6</jdk.version>
-        <maven.version>3.0.4</maven.version>
-    </properties>
-
-    <modules>
-        <module>plugins</module>
-        <module>components</module>
-        <module>testsuite</module>
-    </modules>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>2.4</version>
-                <configuration>
-                    <source>1.6</source>
-                    <target>1.6</target>
-                    <encoding>${project.encoding}</encoding>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-resources-plugin</artifactId>
-                <version>2.5</version>
-                <configuration>
-                    <encoding>${project.encoding}</encoding>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.apache.maven</groupId>
-                <artifactId>maven-core</artifactId>
-                <version>${maven.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.maven</groupId>
-                <artifactId>maven-plugin-api</artifactId>
-                <version>${maven.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.maven.plugin-tools</groupId>
-                <artifactId>maven-plugin-annotations</artifactId>
-                <version>3.2</version>
-                <scope>compile</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/testsuite/pom.xml
----------------------------------------------------------------------
diff --git a/maven-flex-plugin/testsuite/pom.xml 
b/maven-flex-plugin/testsuite/pom.xml
deleted file mode 100644
index 9283f88..0000000
--- a/maven-flex-plugin/testsuite/pom.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  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/xsd/maven-4.0.0.xsd";>
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.flex</groupId>
-        <artifactId>flex-plugin-parent</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.flex.testsuite</groupId>
-    <artifactId>testsuite</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>jar</packaging>
-
-    <name>Maven-Flex-Plugin / Testsuite</name>
-
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/pom.xml
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/pom.xml 
b/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/pom.xml
deleted file mode 100644
index 6dd000f..0000000
--- 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/pom.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  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/xsd/maven-4.0.0.xsd";>
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>org.apache.flex.testsuite</groupId>
-    <artifactId>flex.general.simple-swc</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>swc</packaging>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-flex-plugin</artifactId>
-                <version>1.0.0-SNAPSHOT</version>
-                <extensions>true</extensions>
-                <configuration>
-                    <useLegacyCompiler>false</useLegacyCompiler>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/src/main/flex/Main.mxml
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/src/main/flex/Main.mxml
 
b/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/src/main/flex/Main.mxml
deleted file mode 100644
index c1d1f3b..0000000
--- 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swc/src/main/flex/Main.mxml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-  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.
-
--->
-<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
-               xmlns:s="library://ns.adobe.com/flex/spark">
-    <s:Label text="Hello World!"/>
-</s:Application>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/pom.xml
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/pom.xml 
b/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/pom.xml
deleted file mode 100644
index 0b8722d..0000000
--- 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/pom.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-  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/xsd/maven-4.0.0.xsd";>
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>org.apache.flex.testsuite</groupId>
-    <artifactId>flex.general.simple-swf</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
-    <packaging>swf</packaging>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-flex-plugin</artifactId>
-                <version>1.0.0-SNAPSHOT</version>
-                <extensions>true</extensions>
-                <configuration>
-                    <useLegacyCompiler>false</useLegacyCompiler>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/bfa34a48/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/src/main/flex/Main.mxml
----------------------------------------------------------------------
diff --git 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/src/main/flex/Main.mxml
 
b/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/src/main/flex/Main.mxml
deleted file mode 100644
index c1d1f3b..0000000
--- 
a/maven-flex-plugin/testsuite/projects/concepts/flex/general/simple-swf/src/main/flex/Main.mxml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-  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.
-
--->
-<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
-               xmlns:s="library://ns.adobe.com/flex/spark">
-    <s:Label text="Hello World!"/>
-</s:Application>
\ No newline at end of file

Reply via email to