Add feature model repositories to default.xml
1 file changed
tree: 82936a2acca5e540add30b915866e373ecc6a0fe
  1. .sling-module.xml
  2. collect-sling-repos.groovy
  3. default.xml
  4. LICENSE
  5. README.md
README.md

Apache Sling Aggregator

This module is part of the Apache Sling project.

It provides an XML file that lists all Sling modules, to allow for tools like repo to process multiple repositories at once.

The list of modules is in a self-explaining format and can also be used in your own scripts if preferred.

Note that there are related efforts at SLING-7331 and SLING-7262, we'll need to consolidate all this at some point.

Retrieving all Sling modules

This module allows quick checkout of all Sling modules from Git. It requires the local installation of the repo tool.

Repo Tool Installation (all platforms)

$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo

See also the detailed instructions at https://source.android.com/source/downloading#installing-repo.

Repo Tool Installation on Mac with 2Homebrew

brew install repo

Synchronizing all Git repositories

Clone this repository if needed

git clone https://github.com/apache/sling-aggregator.git
cd sling-aggregator

Initialise the local repo checkout and synchronise all git repositories. The commands below must be run in the sling-aggreator git checkout.

$ repo init --no-clone-bundle -u https://github.com/apache/sling-aggregator.git
$ repo sync --no-clone-bundle

The output is a flat list of all Sling modules.

Speeding up sync

Syncing all Sling modules can take a while, so if your network is fast enough you can try using multiple jobs in parallel. To use 16 jobs, run

$ repo sync -j 16

Updating the list of modules

That list is found in the default.xml file.

It is used to generate the list of Git Repositories on our website.

Install Groovy on Mac with Homebrew

brew install groovy

To update it:

groovy collect-sling-repos.groovy > default.xml

Check changes with git diff and commit if needed.