Skip to content
Closed
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ bundle exec rake package
Creating build/java-buildpack-cfd6b17.zip
```

The online buildpack supports accessing the internet via a proxy. To configure the proxy you will need to tell Cloud Foundry to set an environment variable of `$http_proxy` or `$https_proxy` for your application. This is done at the command line.

```cf set-env myApp http_proxy http://user:password@host:port```

### Offline Package
The offline package is a version of the buildpack designed to run without access to a network. It packages the latest version of each dependency (as configured in the [`config/` directory][]) and [disables `remote_downloads`][]. This package is about 180M in size. To create the offline package, use the `OFFLINE=true` argument:

Expand Down