This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Dynamic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using Microsoft.AspNetCore.Http; | |
using Microsoft.Extensions.Primitives; | |
using SharpRaven.Data; |
This file contains hidden or 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
[[order]] | |
[[order.group]] | |
id = "cloudfoundry/openjdk-jre" | |
version = "1.0.0" | |
optional = true | |
[[order.group]] | |
id = "cloudfoundry/jvm-application" | |
version = "1.0.0" | |
optional = true |
This file contains hidden or 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
// analyzer.go | |
type AnalyzerService interface { | |
Analyze(group buildpack.BuildpackGroup, layersDir string, skipLayers...) | |
} | |
type analyzerService struct { | |
// this would implement AnalyzerService | |
} |