You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/12/07 09:49:48 UTC

[maven-sources] branch master updated: added aggregator POMs to easily build *everything*

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-sources.git


The following commit(s) were added to refs/heads/master by this push:
     new ddd29c8  added aggregator POMs to easily build *everything*
ddd29c8 is described below

commit ddd29c842aea91df3f584f9d6044b134ffd30290
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Dec 7 10:49:31 2019 +0100

    added aggregator POMs to easily build *everything*
---
 core/pom.xml              | 38 ++++++++++++++++++++++++++
 doxia/pom.xml             | 41 ++++++++++++++++++++++++++++
 misc/pom.xml              | 47 ++++++++++++++++++++++++++++++++
 plexus/components/pom.xml | 50 ++++++++++++++++++++++++++++++++++
 plexus/pom.xml            | 44 ++++++++++++++++++++++++++++++
 plugins/core/pom.xml      | 44 ++++++++++++++++++++++++++++++
 plugins/packaging/pom.xml | 46 +++++++++++++++++++++++++++++++
 plugins/pom.xml           | 40 +++++++++++++++++++++++++++
 plugins/reporting/pom.xml | 47 ++++++++++++++++++++++++++++++++
 plugins/tools/pom.xml     | 58 +++++++++++++++++++++++++++++++++++++++
 pom.xml                   | 69 +++++++++++++++++++++++++++++++++++++++++++++++
 shared/pom.xml            | 62 ++++++++++++++++++++++++++++++++++++++++++
 sisu/pom.xml              | 40 +++++++++++++++++++++++++++
 svn/pom.xml               | 45 +++++++++++++++++++++++++++++++
 14 files changed, 671 insertions(+)

diff --git a/core/pom.xml b/core/pom.xml
new file mode 100644
index 0000000..83d7798
--- /dev/null
+++ b/core/pom.xml
@@ -0,0 +1,38 @@
+<?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>core</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for core</name>
+  <modules>
+    <module>../../core/maven</module>
+    <module>../../core/its</module>
+  </modules>
+</project>
diff --git a/doxia/pom.xml b/doxia/pom.xml
new file mode 100644
index 0000000..9683d89
--- /dev/null
+++ b/doxia/pom.xml
@@ -0,0 +1,41 @@
+<?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>doxia</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Doxia</name>
+  <modules>
+    <module>../../doxia/doxia</module>
+    <module>../../doxia/site</module>
+    <module>../../doxia/sitetools</module>
+    <module>../../doxia/tools/converter</module>
+    <module>../../doxia/tools/linkcheck</module>
+  </modules>
+</project>
diff --git a/misc/pom.xml b/misc/pom.xml
new file mode 100644
index 0000000..752749b
--- /dev/null
+++ b/misc/pom.xml
@@ -0,0 +1,47 @@
+<?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>misc</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for misc</name>
+  <modules>
+    <module>../../misc/archetypes</module>
+    <module>../../misc/dist-tool</module>
+    <module>../../misc/indexer</module>
+    <!-- not a module: jenkins -->
+    <module>../../misc/plugin-testing</module>
+    <module>../../misc/pom/apache</module>
+    <module>../../misc/pom/maven</module>
+    <module>../../misc/skins/default</module>
+    <module>../../misc/skins/fluido</module>
+    <!-- not a module: studies -->
+    <module>../../misc/wagon</module>
+  </modules>
+</project>
diff --git a/plexus/components/pom.xml b/plexus/components/pom.xml
new file mode 100644
index 0000000..7cbe7a2
--- /dev/null
+++ b/plexus/components/pom.xml
@@ -0,0 +1,50 @@
+<?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>plexus</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>plexus-components</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Plexus Components</name>
+  <modules>
+    <module>../../../plexus/components/cipher</module>
+    <module>../../../plexus/components/compiler</module>
+    <module>../../../plexus/components/i18n</module>
+    <module>../../../plexus/components/interpolation</module>
+    <module>../../../plexus/components/languages</module>
+    <module>../../../plexus/components/sec-dispatcher</module>
+    <module>../../../plexus/components/archiver</module>
+    <module>../../../plexus/components/cli</module>
+    <module>../../../plexus/components/digest</module>
+    <module>../../../plexus/components/interactivity</module>
+    <module>../../../plexus/components/io</module>
+    <module>../../../plexus/components/resources</module>
+    <!--module>../../../plexus/components/swizzle</module-->
+    <module>../../../plexus/components/velocity</module>
+  </modules>
+</project>
diff --git a/plexus/pom.xml b/plexus/pom.xml
new file mode 100644
index 0000000..0492132
--- /dev/null
+++ b/plexus/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>plexus</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Plexus</name>
+  <modules>
+    <module>../../plexus/classworlds</module>
+    <module>../../plexus/codehaus-plexus.github.io</module>
+    <module>components</module>
+    <module>../../plexus/modello</module>
+    <module>../../plexus/plexus-containers</module>
+    <module>../../plexus/pom/components</module>
+    <module>../../plexus/pom/plexus</module>
+    <module>../../plexus/utils</module>
+  </modules>
+</project>
diff --git a/plugins/core/pom.xml b/plugins/core/pom.xml
new file mode 100644
index 0000000..2dd4abd
--- /dev/null
+++ b/plugins/core/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>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>plugins-core</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Core Plugins</name>
+  <modules>
+    <module>../../../plugins/core/maven-clean-plugin</module>
+    <module>../../../plugins/core/maven-compiler-plugin</module>
+    <module>../../../plugins/core/maven-deploy-plugin</module>
+    <module>../../../plugins/core/maven-install-plugin</module>
+    <module>../../../plugins/core/maven-resources-plugin</module>
+    <module>../../../plugins/core/maven-site-plugin</module>
+    <module>../../../plugins/core/surefire</module>
+    <module>../../../plugins/core/maven-verifier-plugin</module>
+  </modules>
+</project>
diff --git a/plugins/packaging/pom.xml b/plugins/packaging/pom.xml
new file mode 100644
index 0000000..63152d8
--- /dev/null
+++ b/plugins/packaging/pom.xml
@@ -0,0 +1,46 @@
+<?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>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>plugins-packaging</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Packaging Plugins</name>
+  <modules>
+    <module>../../../plugins/packaging/maven-ear-plugin</module>
+    <module>../../../plugins/packaging/maven-ejb-plugin</module>
+    <module>../../../plugins/packaging/maven-jar-plugin</module>
+    <module>../../../plugins/packaging/maven-rar-plugin</module>
+    <module>../../../plugins/packaging/maven-war-plugin</module>
+    <module>../../../plugins/packaging/maven-acr-plugin</module>
+    <module>../../../plugins/packaging/maven-shade-plugin</module>
+    <module>../../../plugins/packaging/maven-source-plugin</module>
+    <module>../../../plugins/packaging/maven-jlink-plugin</module>
+    <module>../../../plugins/packaging/maven-jmod-plugin</module>
+  </modules>
+</project>
diff --git a/plugins/pom.xml b/plugins/pom.xml
new file mode 100644
index 0000000..1482312
--- /dev/null
+++ b/plugins/pom.xml
@@ -0,0 +1,40 @@
+<?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>plugins</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Plugins</name>
+  <modules>
+    <module>core</module>
+    <module>packaging</module>
+    <module>reporting</module>
+    <module>tools</module>
+  </modules>
+</project>
diff --git a/plugins/reporting/pom.xml b/plugins/reporting/pom.xml
new file mode 100644
index 0000000..b5327ca
--- /dev/null
+++ b/plugins/reporting/pom.xml
@@ -0,0 +1,47 @@
+<?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>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>plugins-reporting</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Reporting Plugins</name>
+  <modules>
+    <module>../../../plugins/reporting/maven-changelog-plugin</module>
+    <module>../../../plugins/reporting/maven-changes-plugin</module>
+    <module>../../../plugins/reporting/maven-checkstyle-plugin</module>
+    <module>../../../plugins/reporting/maven-doap-plugin</module>
+    <module>../../../plugins/reporting/maven-docck-plugin</module>
+    <module>../../../plugins/reporting/maven-javadoc-plugin</module>
+    <module>../../../plugins/reporting/maven-jdeps-plugin</module>
+    <module>../../../plugins/reporting/jxr</module>
+    <module>../../../plugins/reporting/maven-linkcheck-plugin</module>
+    <module>../../../plugins/reporting/maven-pmd-plugin</module>
+    <module>../../../plugins/reporting/maven-project-info-reports-plugin</module>
+  </modules>
+</project>
diff --git a/plugins/tools/pom.xml b/plugins/tools/pom.xml
new file mode 100644
index 0000000..cc3e71c
--- /dev/null
+++ b/plugins/tools/pom.xml
@@ -0,0 +1,58 @@
+<?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>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>plugins-tools</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Tools Plugins</name>
+  <modules>
+    <module>../../../plugins/tools/maven-ant-plugin</module>
+    <module>../../../plugins/tools/maven-antrun-plugin</module>
+    <module>../../../plugins/tools/archetype</module>
+    <module>../../../plugins/tools/maven-assembly-plugin</module>
+    <module>../../../plugins/tools/maven-dependency-plugin</module>
+    <module>../../../plugins/tools/enforcer</module>
+    <module>../../../plugins/tools/maven-gpg-plugin</module>
+    <module>../../../plugins/tools/maven-help-plugin</module>
+    <module>../../../plugins/tools/maven-invoker-plugin</module>
+    <module>../../../plugins/tools/maven-jarsigner-plugin</module>
+    <module>../../../plugins/tools/maven-jdeprscan-plugin</module>
+    <module>../../../plugins/tools/maven-patch-plugin</module>
+    <module>../../../plugins/tools/maven-pdf-plugin</module>
+    <module>../../../plugins/tools/plugin-tools</module>
+    <module>../../../plugins/tools/release</module>
+    <module>../../../plugins/tools/maven-remote-resources-plugin</module>
+    <module>../../../plugins/tools/maven-repository-plugin</module>
+    <module>../../../plugins/tools/scm</module>
+    <module>../../../plugins/tools/maven-scm-publish-plugin</module>
+    <module>../../../plugins/tools/maven-scripting-plugin</module>
+    <module>../../../plugins/tools/maven-stage-plugin</module>
+    <module>../../../plugins/tools/maven-toolchains-plugin</module>
+  </modules>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..3856a6b
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,69 @@
+<?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.maven.aggregator</groupId>
+  <artifactId>maven-aggregator</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for the whole source code of Maven project</name>
+  <url>https://maven.apache.org/</url>
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>https://www.apache.org/</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>Apache License, Version 2.0</name>
+      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-sources.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-sources.git</developerConnection>
+    <url>https://github.com/apache/maven-sources/tree/${project.scm.tag}</url>
+    <tag>HEAD</tag>
+  </scm>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <maven.install.skip>true</maven.install.skip><!-- aggregator POMs not intended to be installed -->
+    <maven.deploy.skip>true</maven.deploy.skip><!-- aggregator POMs not intended to be deployed -->
+  </properties>
+
+  <modules>
+    <module>core</module>
+    <module>doxia</module>
+    <module>misc</module>
+    <module>plexus</module>
+    <module>plugins</module>
+    <module>shared</module>
+    <module>sisu</module>
+    <module>../site</module>
+    <module>svn</module>
+  </modules>
+</project>
diff --git a/shared/pom.xml b/shared/pom.xml
new file mode 100644
index 0000000..bb5469f
--- /dev/null
+++ b/shared/pom.xml
@@ -0,0 +1,62 @@
+<?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>shared</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Shared Components</name>
+  <modules>
+    <module>../../shared/archiver</module>
+    <module>../../shared/artifact-resolver</module>
+    <module>../../shared/artifact-transfer</module>
+    <module>../../shared/common-artifact-filters</module>
+    <module>../../shared/dependency-analyzer</module>
+    <module>../../shared/dependency-tree</module>
+    <module>../../shared/downloader</module>
+    <module>../../shared/file-management</module>
+    <module>../../shared/filtering</module>
+    <module>../../shared/invoker</module>
+    <module>../../shared/jarsigner</module>
+    <module>../../shared/mapping</module>
+    <module>../../shared/osgi</module>
+    <module>../../shared/project-utils</module>
+    <module>../../shared/reporting-api</module>
+    <module>../../shared/reporting-exec</module>
+    <module>../../shared/reporting-impl</module>
+    <module>../../shared/repository-builder</module>
+    <module>../../shared/runtime</module>
+    <module>../../shared/script-interpreter</module>
+    <module>../../shared/shared-incremental</module>
+    <module>../../shared/shared-io</module>
+    <module>../../shared/shared-jar</module>
+    <module>../../shared/shared-resources</module>
+    <module>../../shared/shared-utils</module>
+    <module>../../shared/verifier</module>
+  </modules>
+</project>
diff --git a/sisu/pom.xml b/sisu/pom.xml
new file mode 100644
index 0000000..254db46
--- /dev/null
+++ b/sisu/pom.xml
@@ -0,0 +1,40 @@
+<?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>sisu</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for Sisu</name>
+  <modules>
+    <!--module>../../sisu/sisu</module-->
+    <module>../../sisu/inject</module>
+    <module>../../sisu/plexus</module>
+    <module>../../sisu/mojos</module>
+  </modules>
+</project>
diff --git a/svn/pom.xml b/svn/pom.xml
new file mode 100644
index 0000000..787e2a1
--- /dev/null
+++ b/svn/pom.xml
@@ -0,0 +1,45 @@
+<?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>svn</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Aggregator POM for artifacts still in SVN</name>
+  <modules>
+    <module>../../svn/resources</module>
+    <module>../../svn/repository-tools</module>
+    <!--module>../../svn/sandbox</module-->
+    <!--module>../../svn/doxia-ide/eclipse/doxia-osgi</module>
+    <module>../../svn/doxia-ide/eclipse/eclipse-plugins</module-->
+    <module>../../svn/doxia-tools/doxia-book-maven-plugin</module>
+    <module>../../svn/doxia-tools/doxia-book-renderer</module>
+    <module>../../svn/doxia-tools/doxia-converter</module>
+    <module>../../svn/doxia-tools/doxia-linkcheck</module>
+  </modules>
+</project>