| 13 | const CACHE_KEY_PREFIX = 'setup-java'; |
| 14 | |
| 15 | interface 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 | } |
| 23 | const supportedPackageManager: PackageManager[] = [ |
| 24 | { |
| 25 | id: 'maven', |
nothing calls this directly
no outgoing calls
no test coverage detected