Skip to content

Commit ed5ba83

Browse files
Update passthrough.go
1 parent 5e88b02 commit ed5ba83

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

internal/recipe/passthrough.go

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,36 @@ func NewPassthroughRecipes(f fetch.Fetcher) []Recipe {
8989
Meta: ArtifactMeta{OS: "linux", Arch: "noarch", Stack: "any-stack"},
9090
Fetcher: f,
9191
},
92+
&PassthroughRecipe{
93+
DepName: "newrelic",
94+
SourceFilenameFunc: func(v string) string { return fmt.Sprintf("newrelic-java-%s.zip", v) },
95+
Meta: ArtifactMeta{OS: "linux", Arch: "noarch", Stack: "any-stack"},
96+
Fetcher: f,
97+
},
98+
&PassthroughRecipe{
99+
DepName: "google-stackdriver-profiler",
100+
SourceFilenameFunc: func(v string) string { return "profiler_java_agent.tar.gz" },
101+
Meta: ArtifactMeta{OS: "linux", Arch: "noarch", Stack: "any-stack"},
102+
Fetcher: f,
103+
},
104+
&PassthroughRecipe{
105+
DepName: "groovy",
106+
SourceFilenameFunc: func(v string) string { return fmt.Sprintf("apache-groovy-binary-%s.zip", v) },
107+
Meta: ArtifactMeta{OS: "linux", Arch: "noarch", Stack: "any-stack"},
108+
Fetcher: f,
109+
},
110+
&PassthroughRecipe{
111+
DepName: "cf-metrics-exporter",
112+
SourceFilenameFunc: func(v string) string { return fmt.Sprintf("cf-metrics-exporter-%s.jar", v) },
113+
Meta: ArtifactMeta{OS: "linux", Arch: "noarch", Stack: "any-stack"},
114+
Fetcher: f,
115+
},
116+
&PassthroughRecipe{
117+
DepName: "spring-boot-cli",
118+
SourceFilenameFunc: func(v string) string { return fmt.Sprintf("spring-boot-cli-%s-bin.tar.gz", v) },
119+
Meta: ArtifactMeta{OS: "linux", Arch: "noarch", Stack: "any-stack"},
120+
Fetcher: f,
121+
},
92122
&PassthroughRecipe{
93123
DepName: "tomcat",
94124
SourceFilenameFunc: func(v string) string { return fmt.Sprintf("apache-tomcat-%s.tar.gz", v) },

0 commit comments

Comments
 (0)