Configure Moderne DX with Artifactory access: recipes
In order for Moderne DX to interact with your recipe artifacts from Artifactory, you will need to create a Maven formatted repository inside of Artifactory and point the Moderne DX service to said repository. This guide will walk you through how to configure the Moderne DX service to get the list of recipe artifacts from the repository you created in Artifactory.
Publishing recipe artifacts
Recipe artifacts will automatically be picked up by Moderne so long as you set the recipe source flag to true in the below configuration step.
Configuring the Moderne DX service
The following table contains all of the variables/arguments you need to add to your Moderne DX service run command in order for it to get recipe artifacts from your Maven formatted repository inside of Artifactory. Please note that these variables/arguments must be combined with ones found in other steps in the Configuring the Moderne DX service guide.
You can configure multiple Maven formatted repositories by including multiple entries, each with a different {index}
.
Variables:
MODERNE_DX_MAVEN_{index}_URL
– The URL of your Maven repository inside of Artifactory.MODERNE_DX_MAVEN_{index}_ASTSOURCE
– Specifies whether or not this repository should be searched for LST artifacts. Defaults totrue
– but you should set this tofalse
(Note: LSTs used to be called ASTs).MODERNE_DX_MAVEN_{index}_LOCALREPOSITORY
– The path on disk where Maven index files will be downloaded to. This is on the disk where the service is being run and not in Artifactory. Defaults to~/.moderne-maven
If multiple Maven repositories are configured on the service, they must have different
MODERNE_DX_MAVEN_{index}_LOCALREPOSITORY
configured.
MODERNE_DX_MAVEN_{index}_USERNAME
– (Optional) The username used to resolve artifacts. Defaults tonull
.MODERNE_DX_MAVEN_{index}_PASSWORD
– (Optional) The password used to resolve artifacts. Defaults tonull
.MODERNE_DX_MAVEN_{index}_RELEASES
– (Optional) Specifies whether or not this repository should be searched for releases. Defaults totrue
.MODERNE_DX_MAVEN_{index}_SNAPSHOTS
– (Optional) Specifies whether or not this repository should be searched for snapshots. Defaults totrue
.MODERNE_DX_MAVEN_{index}_RECIPESOURCE
– (Optional) Specifies whether or not this repository should be searched for recipe jars. Defaults totrue
.MODERNE_DX_MAVEN_{index}_SKIPSSL
– (Optional) Whether or not to skip SSL/TLS verification for calls from the service to this Maven repository. This must be set totrue
if you use a self-signed SSL/TLS certificate. Defaults tofalse
.MODERNE_DX_MAVEN_{index}_SKIPVALIDATECONNECTIVITY
– (Optional) By default, on startup dx we validate that it can connect to the configured resource, and fail to start up the dx if we cannot. Set this totrue
to skip this validation. Defaults tofalse
.
Example:
Last updated