expand studies into 1 checkout per study
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f79c928
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+target/
+.project
+.classpath
+.settings/
+.svn/
+bin/
+# Intellij
+*.ipr
+*.iml
+.idea
+out/
+.DS_Store
+/bootstrap
+/dependencies.xml
+.java-version
diff --git a/default.xml b/default.xml
index d051c68..10d3d9a 100644
--- a/default.xml
+++ b/default.xml
@@ -126,7 +126,16 @@
   <project path='misc/indexer'                              name='maven-indexer.git' />
   <project path='misc/plugin-testing'                       name='maven-plugin-testing.git' />
   <project path='misc/wagon'                                name='maven-wagon.git' />
-  <project path='misc/studies'                              name='maven-studies.git' />
+
+  <project path='studies/master'                            name='maven-studies.git' />
+  <project path='studies/consumer-pom'                      name='maven-studies.git' revision="consumer-pom" />
+  <project path='studies/maven-basedir-filesystem'          name='maven-studies.git' revision="maven-basedir-filesystem" />
+  <project path='studies/maven-buildinfo-plugin'            name='maven-studies.git' revision="maven-buildinfo-plugin" />
+  <project path='studies/maven-ci-extension'                name='maven-studies.git' revision="maven-ci-extension" />
+  <project path='studies/maven-default-plugins'             name='maven-studies.git' revision="maven-default-plugins" />
+  <project path='studies/maven-eventsound-extension'        name='maven-studies.git' revision="maven-eventsound-extension" />
+  <project path='studies/maven-extension-demo'              name='maven-studies.git' revision="maven-extension-demo" />
+  <project path='studies/maven-xml'                         name='maven-studies.git' revision="maven-xml" />
 
   <project path='svn/resources'                             name='maven-resources.git'           remote='svn2git' revision='trunk' />
   <project path='svn/repository-tools'                      name='maven-repository-tools.git'    remote='svn2git' revision='trunk' />
diff --git a/pom.xml b/pom.xml
index d5fa59e..256c9bb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,7 @@
     <module>plugins</module>
     <module>shared</module>
     <!--module>sisu</module--><!-- disabled: failing for unknown reason -->
+    <module>studies</module>
     <module>../site</module>
     <module>svn</module>
   </modules>
diff --git a/studies/pom.xml b/studies/pom.xml
new file mode 100644
index 0000000..135ef62
--- /dev/null
+++ b/studies/pom.xml
@@ -0,0 +1,44 @@
+<?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.maven.aggregator</groupId>
+    <artifactId>maven-aggregator</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>studies</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Maven Studies</name>
+  <modules>
+    <module>../../studies/consumer-pom</module>
+    <module>../../studies/maven-basedir-filesystem</module>
+    <module>../../studies/maven-buildinfo-plugin</module>
+    <module>../../studies/maven-ci-extension</module>
+    <module>../../studies/maven-default-plugins</module>
+    <module>../../studies/maven-eventsound-extension</module>
+    <module>../../studies/maven-extension-demo</module>
+    <module>../../studies/maven-xml</module>
+  </modules>
+</project>