MCPcopy Index your code
hub / github.com/actions/setup-java / PackageManager

Interface PackageManager

src/cache.ts:15–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13const CACHE_KEY_PREFIX = 'setup-java';
14
15interface PackageManager {
16 id: 'maven' | 'gradle' | 'sbt';
17 /**
18 * Paths of the file that specify the files to cache.
19 */
20 path: string[];
21 pattern: string[];
22}
23const supportedPackageManager: PackageManager[] = [
24 {
25 id: 'maven',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected