Skip to main content

Configure Moderne DX with strict recipe sources

The Moderne CLI is configured to use the following Maven repositories to load recipe artifacts from in the event the Moderne DX service has not been configured with any recipe sources or if a recipe artifact cannot be sourced from what is configured.

<repository>
<id>maven-central-explicit</id>
<url>https://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>artifact-registry</id>
<url>https://us-west1-maven.pkg.dev/moderne-dev/moderne-recipe</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>jitpack</id>
<url>https://jitpack.io</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>

This fallback behavior can be disabled using recipe configuration. If the Moderne DX service is configured with this setting then recipes will only be sourced by what this service defines.

Variables:

Variable NameRequiredDefaultDescription
MODERNE_DX_RECIPE_USEONLYCONFIGUREDtrueOnly use the recipe sources configured in the service.
MODERNE_DX_RECIPE_POMCACHE_TYPEfalseUsed to specify what type of cache the POM should use. Acceptable values: IN_MEMORY or REDIS.
MODERNE_DX_RECIPE_POMCACHE_ENTRYTTLMINUTESfalseHow long entries should live in the POM cache.
MODERNE_DX_RECIPE_POMCACHE_REDIS_HOSTtrue (If the POM cache type is set to REDIS)The URL of the Redis instance.
MODERNE_DX_RECIPE_POMCACHE_REDIS_PORTtrue (If the POM cache type is set to REDIS)The port number of the Redis instance.
MODERNE_DX_RECIPE_POMCACHE_REDIS_USERNAMEfalseThe username needed to authenticate to the Redis instance.
MODERNE_DX_RECIPE_POMCACHE_REDIS_PASSWORDfalseThe password needed to authenticate with the Redis instance.
MODERNE_DX_RECIPE_POMCACHE_REDIS_SSLfalsefalseIf set to true, then SSL will be enabled for the connection to the Redis instance.
MODERNE_DX_RECIPE_POMCACHE_REDIS_DATABASEfalseThe Redis DB index.

Example:

docker run \
# ... Existing variables
-e MODERNE_DX_RECIPE_USEONLYCONFIGURED=true \
# ... Additional variables