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/14 11:44:20 UTC

[maven-sources] branch master updated (b260f11 -> 85d99dc)

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

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


    from b260f11  disabled sisu: failing for unknown reason
     new e13e84c  expand studies into 1 checkout per study
     new 85d99dc  added full aggragated build instructions

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                 | 15 +++++++++++++++
 README.md                  | 14 ++++++++++++++
 default.xml                | 11 ++++++++++-
 pom.xml                    |  1 +
 {doxia => studies}/pom.xml | 17 ++++++++++-------
 5 files changed, 50 insertions(+), 8 deletions(-)
 create mode 100644 .gitignore
 copy {doxia => studies}/pom.xml (70%)


[maven-sources] 01/02: expand studies into 1 checkout per study

Posted by hb...@apache.org.
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

commit e13e84c19c5f678ec79a1762124b7fcc34a0d4fa
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Dec 14 12:38:26 2019 +0100

    expand studies into 1 checkout per study
---
 .gitignore      | 15 +++++++++++++++
 default.xml     | 11 ++++++++++-
 pom.xml         |  1 +
 studies/pom.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 70 insertions(+), 1 deletion(-)

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 @@ under the License.
     <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>


[maven-sources] 02/02: added full aggragated build instructions

Posted by hb...@apache.org.
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

commit 85d99dc118c16592a92b53ecb041298ff8ed7ac7
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Dec 14 12:44:11 2019 +0100

    added full aggragated build instructions
---
 README.md | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/README.md b/README.md
index 3da6c52..251ea1b 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
 
 Manifest to fetch every [Apache Maven](https://maven.apache.org) git repositories using [Google repo](https://source.android.com/source/using-repo).
 
+In addition, an aggregator structure is provided to build everything as one aggregated build.
+
 ## Bootstrapping Basics
 
 ```
@@ -14,6 +16,18 @@ repo start master --all
 
 Then simply use the cloned content with normal `git` commands.
 
+## Building Everything
+
+Once content is cloned with previous instructions, you can build each repository as a separate project.
+
+You can also build absolutely everything in one aggregated run (WARNING: more than 400 modules...):
+
+```
+cd sources
+mvn --fail-at-end -Prun-its verify
+mvn --fail-at-end -Preporting site
+```
+
 ## Sources Overview
 
 See [Maven Sources Overview](https://maven.apache.org/scm.html) description.