-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a fixed version of Maven to build CI jobs rather than relying on …
…what is installed by default on the runner. Maven 3.9 is not compatible with the GATE DumpCreoleToXML Maven plugin so for the time being we need to be sure we're building on Maven 3.8
- Loading branch information
1 parent
f15c9d3
commit cafb5f4
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,11 @@ jobs: | |
distribution: 'zulu' | ||
cache: maven | ||
|
||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: "3.8.8" | ||
|
||
# Override http://repo.gate.ac.uk to use https:// instead | ||
- name: Configure Maven settings | ||
uses: whelk-io/maven-settings-xml-action@v20 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,11 @@ jobs: | |
distribution: 'zulu' | ||
cache: maven | ||
|
||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: "3.8.8" | ||
|
||
# Override http://repo.gate.ac.uk to use https:// instead | ||
- name: Configure Maven settings | ||
uses: whelk-io/maven-settings-xml-action@v20 | ||
|