mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 18:06:45 +00:00
Cache Maven Dists downloaded by the Maven Wrapper
This commit is contained in:
parent
ea15b3b99c
commit
a8fc099b0f
4 changed files with 7 additions and 7 deletions
4
dist/cleanup/index.js
vendored
4
dist/cleanup/index.js
vendored
|
@ -68236,9 +68236,9 @@ const CACHE_KEY_PREFIX = 'setup-java';
|
|||
const supportedPackageManager = [
|
||||
{
|
||||
id: 'maven',
|
||||
path: [path_1.join(os_1.default.homedir(), '.m2', 'repository')],
|
||||
path: [path_1.join(os_1.default.homedir(), '.m2', 'repository'), path_1.join(os_1.default.homedir(), '.m2', 'wrapper', 'dists')],
|
||||
// https://github.com/actions/cache/blob/0638051e9af2c23d10bb70fa9beffcad6cff9ce3/examples.md#java---maven
|
||||
pattern: ['**/pom.xml']
|
||||
pattern: ['**/pom.xml', '.mvn/wrapper/maven-wrapper.properties']
|
||||
},
|
||||
{
|
||||
id: 'gradle',
|
||||
|
|
4
dist/setup/index.js
vendored
4
dist/setup/index.js
vendored
|
@ -103439,9 +103439,9 @@ const CACHE_KEY_PREFIX = 'setup-java';
|
|||
const supportedPackageManager = [
|
||||
{
|
||||
id: 'maven',
|
||||
path: [path_1.join(os_1.default.homedir(), '.m2', 'repository')],
|
||||
path: [path_1.join(os_1.default.homedir(), '.m2', 'repository'), path_1.join(os_1.default.homedir(), '.m2', 'wrapper', 'dists')],
|
||||
// https://github.com/actions/cache/blob/0638051e9af2c23d10bb70fa9beffcad6cff9ce3/examples.md#java---maven
|
||||
pattern: ['**/pom.xml']
|
||||
pattern: ['**/pom.xml', '.mvn/wrapper/maven-wrapper.properties']
|
||||
},
|
||||
{
|
||||
id: 'gradle',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue