mirror of
https://github.com/actions/setup-java.git
synced 2025-06-29 04:24:14 +00:00
Extended settings.xml - Profiles with Repo
Building Maven Project with dependencies of another Repository then Maven-Central.
This commit is contained in:
parent
f4f1212c88
commit
84ab74cb71
4 changed files with 152 additions and 4 deletions
18
action.yml
18
action.yml
|
@ -53,6 +53,24 @@ inputs:
|
|||
description: 'Environment variable name for the GPG private key passphrase. Default is
|
||||
$GPG_PASSPHRASE.'
|
||||
required: false
|
||||
repo-id:
|
||||
description: 'Identifier of a Named Repo - e.g. "github"'
|
||||
required: false
|
||||
repo-url:
|
||||
description: 'URL of a repository where maven will look for Dependencies - e.g. "https://maven.pkg.github.com/<USERNAME_or_ORGANIZATION>/*"'
|
||||
required: false
|
||||
no-snapshots:
|
||||
description: 'Sets the flag, if snapshots of custom repositories, shall be allowed of not. (default does allow Snapshots)'
|
||||
required: false
|
||||
default: false
|
||||
use-central:
|
||||
description: 'Sets the Flag, whether to use Maven-Central or not. (default allows Central repo)'
|
||||
required: false
|
||||
default: true
|
||||
prioritize-central:
|
||||
description: 'Allows it to define, which Repo will be choosen first to download Dependencies. (default Central prior Custom)'
|
||||
required: false
|
||||
default: true
|
||||
cache:
|
||||
description: 'Name of the build platform to cache dependencies. It can be "maven", "gradle" or "sbt".'
|
||||
required: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue