Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add UPX into the buildpack group #155

Merged
merged 1 commit into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The Paketo Java Native Image Buildpack is a Cloud Native Buildpack with an order
* [`paketo-buildpacks/procfile`](https://github.com/paketo-buildpacks/procfile)
* [`paketo-buildpacks/sbt`](https://github.com/paketo-buildpacks/sbt)
* [`paketo-buildpacks/spring-boot`](https://github.com/paketo-buildpacks/spring-boot)
* [`paketo-buildpacks/upx`](https://github.com/paketo-buildpacks/upx)

## License
This buildpack is released under version 2.0 of the [Apache License][a].
Expand Down
1 change: 1 addition & 0 deletions buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ group = [

### Order is strictly enforced
{ id = "paketo-buildpacks/ca-certificates", version="2.3.2", optional = true },
{ id = "paketo-buildpacks/upx", version="1.0.1", optional = true },
{ id = "paketo-buildpacks/graalvm", version="6.3.0" },
{ id = "paketo-buildpacks/leiningen", version="3.2.2", optional = true },
{ id = "paketo-buildpacks/gradle", version="5.4.0", optional = true },
Expand Down
1 change: 1 addition & 0 deletions package.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
dependencies = [
{ uri = "docker://gcr.io/paketo-buildpacks/ca-certificates:2.3.2" },
{ uri = "docker://gcr.io/paketo-buildpacks/upx:1.0.1" },
{ uri = "docker://gcr.io/paketo-buildpacks/graalvm:6.3.0" },
{ uri = "docker://gcr.io/paketo-buildpacks/leiningen:3.2.2" },
{ uri = "docker://gcr.io/paketo-buildpacks/gradle:5.4.0" },
Expand Down