Context holds shared dependencies for buildpack components Used by containers, frameworks, and JREs to access buildpack infrastructure
| 43 | // Context holds shared dependencies for buildpack components |
| 44 | // Used by containers, frameworks, and JREs to access buildpack infrastructure |
| 45 | type Context struct { |
| 46 | Stager Stager |
| 47 | Manifest Manifest |
| 48 | Installer Installer |
| 49 | Log *libbuildpack.Logger |
| 50 | Command Command |
| 51 | } |
| 52 | |
| 53 | // DetermineJavaVersion determines the major Java version from a Java installation |
| 54 | // by reading the JAVA_VERSION field from the release file. |
no outgoing calls
no test coverage detected