Skip to content

Commit

Permalink
configure more settings
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkarlsen committed Aug 18, 2021
1 parent 14f3367 commit b0141c4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ inputs:
description: Version of Maven to use
required: true
default: 3.8.2
overwrite-settings:
description: Overwrite settings.xml
required: false
default: false

runs:
using: "composite"
Expand All @@ -19,7 +23,7 @@ runs:
uses: actions/setup-java@v2.2.0
with:
distribution: ${{ inputs.distribution }}
overwrite-settings: false
overwrite-settings: ${{ inputs.overwrite-settings }}
java-version: ${{ inputs.java-version }}

- name: Set up Maven
Expand Down

0 comments on commit b0141c4

Please sign in to comment.