Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netcentric/maven-ext-repos-from-env
Allows to auto-configure maven repositories from system environment
https://github.com/netcentric/maven-ext-repos-from-env
adobe-experience-manager aem cloud-manager
Last synced: 12 days ago
JSON representation
Allows to auto-configure maven repositories from system environment
- Host: GitHub
- URL: https://github.com/netcentric/maven-ext-repos-from-env
- Owner: Netcentric
- License: epl-2.0
- Created: 2020-07-27T13:56:13.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-26T11:39:58.000Z (9 months ago)
- Last Synced: 2024-11-13T08:38:27.860Z (2 months ago)
- Topics: adobe-experience-manager, aem, cloud-manager
- Language: Java
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/biz.netcentric.maven.extension/maven-ext-repos-from-env/badge.svg)](https://maven-badges.herokuapp.com/maven-central/biz.netcentric.maven.extension/maven-ext-repos-from-env)
[![Java CI/CD](https://github.com/Netcentric/maven-ext-repos-from-env/workflows/Java%20CI/CD/badge.svg)](https://github.com/Netcentric/maven-ext-repos-from-env/actions/workflows/maven.yml)
[![License](https://img.shields.io/badge/License-EPL%202.0-red.svg)](https://www.eclipse.org/legal/epl-v20.html) [![SonarCloud Status](https://sonarcloud.io/api/project_badges/measure?project=Netcentric_maven-ext-repos-from-env&metric=alert_status)](https://sonarcloud.io/dashboard?id=Netcentric_maven-ext-repos-from-env)
[![SonarCloud Coverage](https://sonarcloud.io/api/project_badges/measure?project=Netcentric_maven-ext-repos-from-env&metric=coverage)](https://sonarcloud.io/component_measures/metric/coverage/list?id=Netcentric_maven-ext-repos-from-env)# Maven Extension: Repos from System Env
This Maven extension allows to add additional remote repositories to the Maven execution by solely using OS level environment variables or Java system properties (without touching `settings.xml` nor `pom.xml`). Furthermore it allows to place certain artifacts directly under `.mvn/repository` (see details [below](#using-file-repositories)). This is achieved by modifying the in-memory [Maven settings](https://maven.apache.org/settings.html) before using them.
While most of the time setting the remote repositories in the `settings.xml` (and potentially also in `pom.xml`) is the recommended approach, for cases where the `settings.xml` is not under the development team's control it can be useful to configure this extension.
In case the relevant environment variables are not set this extension has no effect (apart from the implicit file repo `.mvn/repository` if it exists). This allows to
* Minimise the changes in the regular project setup (only the extension has to be added, all mirrors, repositories from `settings.xml` may remain active for local developers or CI servers)
* Add additional repositories with the help of environment variables or system properties.This is helpful for constrained build environments (without full control over the `settings.xml` file) and also to enforce a common repository across all developers without additional manual set up. As this extension always adds a **new** repository it is mostly useful for cases where no POM repositories are being used. *Just adding credentials for an existing (POM or settings.xml) repository is not supported yet ([issue 28](https://github.com/Netcentric/maven-ext-repos-from-env/issues/28))*.
## Simple Usage
### Step 1: Configure the extension for your repository
In directory `.mvn`, create (or adjust) the file `extensions.xml`:
```
biz.netcentric.maven.extension
maven-ext-repos-from-env
1.2.0
```
See [Maven documentation](https://maven.apache.org/configure.html#mvn-extensions-xml-file) for reference on how extensions can be activated.The artifact is available at [Maven Central](https://search.maven.org/search?q=g:biz.netcentric.maven.extension%20AND%20a:maven-ext-repos-from-env).
### Step 2: Setup the environment variables or system properties for your build
In all the following examples environment variables are used, but this extension can also be configured with Java system properties having the same name as the environment variables. In case both a variable and property are given with the same name the system property takes precedence.
#### Remote https repo using credentials
The following environment variables can be set to have the Maven extension above automatically add both the repository (could be otherwise in `pom.xml` or in `settings.xml`) and the authentication for the server (would have to be configured in `settings.xml` without this extension):
```
export MVN_SETTINGS_REPO_URL=https://repo.myorg.com/path/to/repo
export MVN_SETTINGS_REPO_USERNAME=username
export MVN_SETTINGS_REPO_PASSWORD=password
```This leads to using authentication via basic auth to the given repository.
#### Remote https repo without authentication
For the case no authentication is necessary, setting only one environment variable is sufficient:
```
export MVN_SETTINGS_REPO_URL=https://repo.myorg.com/path/to/repo_no_auth
```For this case, no corresponding `server` entry is generated for this repository.
#### Using multiple repositories
It is also possible to use multiple repositories by placing an infix between the environment prefix `MVN_SETTINGS_REPO` and the configuration specific suffix:
```
# REPO_NAME1
export MVN_SETTINGS_REPO_NAME1_URL=https://repo.myorg.com/path/to/repo
export MVN_SETTINGS_REPO_NAME1_USERNAME=username1
export MVN_SETTINGS_REPO_NAME1_PASSWORD=password1
# REPO_NAME2
export MVN_SETTINGS_REPO_NAME2_URL=https://repo.myorg.com/path/to/repo
export MVN_SETTINGS_REPO_NAME2_USERNAME=username2
export MVN_SETTINGS_REPO_NAME2_PASSWORD=password2
```In this example two repositories and two server entries for are created. The order can be important for performance reasons, the repositories are added in alphabetical order of their names.
#### Using file repositories
As generally true for Maven repositories, it is also possible to use file urls. To reference a file repository within the build repository itself, use the property `maven.multiModuleProjectDirectory` in the value of `MVN_SETTINGS_REPO_URL`, e.g. `MVN_SETTINGS_REPO_URL=file://${maven.multiModuleProjectDirectory}/vendor1/repository`. If the directory `.mvn/repository` exists, it is automatically added as file repository.
This approach can be useful for parent poms or importing dependencies (scope `import`).
#### Using the verbose logging mode
With the environment variable `MVN_SETTINGS_REPO_LOG_VERBOSE`, some more logging can be activated:
```
export MVN_SETTINGS_REPO_LOG_VERBOSE=true
```#### Bypassing mirrors
In case the `settings.xml` defines one or multiple mirrors, those are automatically disabled for the newly added repositories by adding their ids to the `mirrorOf` value with a leading `!` as documented in [Advanced Mirror Specification](https://maven.apache.org/guides/mini/guide-mirror-settings.html#advanced-mirror-specification). To disable this mirror bypass set the environment variable `MVN_DISABLE_BYPASS_MIRRORS` to `true`.
#### Repository order
By default, the repositories as configured in env are queried **after** the default repositories in `settings.xml`. For the case that the system env repo is also a proxy repository for Maven Central (i.e. containing all required artifacts), it can be forced to be used first (before the repositories from settings.xml).
```
export MVN_SETTINGS_ENV_REPOS_FIRST=true
```Setting this flag is only relevant for performance reasons, the overall build will work with or without this flag.
For the general order of repositories (both from settings and POM) refer to .#### Distribute configuration with code
In case environment variables are too much effort to set one can also leverage the [`.mvn/jvm.config` file](https://maven.apache.org/configure.html#mvn-jvm-config-file) to set the configuration via [Java system properties](https://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html).
An example file might look like this
```
-DMVN_SETTINGS_REPO_NAME1_URL=https://repo.myorg.com/path/to/repo -DMVN_SETTINGS_REPO_NAME1_USERNAME=username1 -DMVN_SETTINGS_REPO_NAME1_PASSWORD=password1
```Such a configuration can be distributed through the SCM along with the code (in case the values are not supposed to be treated as secrets).
## Usage with Adobe Experience Manager Cloud Manager
### Step 1: Configure the extension for your repository
Reference the Maven extension in the `.mvn/extensions.xml` file as described above.
### Step 2: Setup the environment for your build using Adobe IO
*Prerequisites:*
* Add the `Cloud Manager API` to your Adobe IO project at [https://console.adobe.io/](https://console.adobe.io/)
* Add a Service Account (JWT based) by either uploading a public key (from a manually generated private/public key pair) or letting the wizard generate both private and public key for you. In both cases make sure to store the private key in a safe place.
* Setting environment variables requires [permissions of role `Deployment Manager`](https://www.adobe.io/apis/experiencecloud/cloud-manager/docs.html#!AdobeDocs/cloudmanager-api-docs/master/permissions.md) so make sure that the service account has at least that permission
* Install [aio-cli](https://github.com/adobe/aio-cli/blob/master/README.md#usage)
* Setup Adobe IO CLI in general [Getting Started](https://www.adobe.io/apis/experienceplatform/project-firefly/docs.html#!AdobeDocs/project-firefly/master/getting_started/setup.md)
* Install [aio-cli-plugin-cloudmanager](https://github.com/adobe/aio-cli-plugin-cloudmanager#installation)
* Setup [Adobe IO authentication with Cloud Manager](https://github.com/adobe/aio-cli-plugin-cloudmanager#authentication)Once everything is set up, the environment variables of the Cloud Manager build can be set as follows:
```
aio cloudmanager:set-pipeline-variables \
\
--programId= \
--variable \
MVN_SETTINGS_REPO_URL \
MVN_SETTINGS_REPO_USERNAME \
--secret \
MVN_SETTINGS_REPO_PASSWORD
```The parameters `` and `` can be derived from URLs when browsing the Cloud Manager. The call needs to be made for each pipeline as set up in cloud manager (all non-prod and the prod pipeline).
See also official [Adobe documentation](https://docs.adobe.com/content/help/en/experience-manager-cloud-service/onboarding/getting-access/creating-aem-application-project.html#pipeline-variables) and [reference on GitHub](https://github.com/adobe/aio-cli-plugin-cloudmanager#aio-cloudmanagerset-pipeline-variables-pipelineid)