Skip to content

Commit d02edbb

Browse files
committed
Merge branch 'utf-8-characters' into 3.x
2 parents dbb8ec3 + da93296 commit d02edbb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_Have something youd like to contribute to the buildpack? We welcome pull requests, but ask that you carefully read this document first to understand how best to submit them; what kind of changes are likely to be accepted; and what to expect from the Cloud Foundry Java Experience team when evaluating your submission._
1+
_Have something you'd like to contribute to the buildpack? We welcome pull requests, but ask that you carefully read this document first to understand how best to submit them; what kind of changes are likely to be accepted; and what to expect from the Cloud Foundry Java Experience team when evaluating your submission._
22

33
_Please refer back to this document as a checklist before issuing any pull request; this will save time for everyone!_
44

docs/buildpack-modes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Java Buildpack has three execution modes as described in the blog post, ['Packaged and Offline Buildpacks'][l].
33

44
* **Easy Mode:** Uses the repository at `https://java-buildpack.cloudfoundry.org`. This does not require any cloning or downloading unless you want to modify the Cloud Foundry provided buildpack. This is the default, and what we recommend to anyone who asks.
5-
* **Expert Mode:** Refers to a repository hosted at a different location, possibly on an internal network. The [structure of the repository][r] is defined as an HTTP-accessible collection of files. The repository root must contain an `index.yml` file that is a mapping of concrete versions to absolute URIs. This repository can be created manually or [creating a replica](#replicating-the-repository-optional) for the repository at `https://java-buildpack.cloudfoundry.org`. This is what we would recommend to any customer that didnt want to access the Internet. Its easy to keep applications secure and up-to-date, but requires the expertise to run a web-server and keep it up to date.
5+
* **Expert Mode:** Refers to a repository hosted at a different location, possibly on an internal network. The [structure of the repository][r] is defined as an HTTP-accessible collection of files. The repository root must contain an `index.yml` file that is a mapping of concrete versions to absolute URIs. This repository can be created manually or [creating a replica](#replicating-the-repository-optional) for the repository at `https://java-buildpack.cloudfoundry.org`. This is what we would recommend to any customer that didn't want to access the Internet. It's easy to keep applications secure and up-to-date, but requires the expertise to run a web-server and keep it up to date.
66
* **Offline Mode:** Uses only the packaged internal cache. This is what we recommend if you wanted a single, self-contained artifact. The downside is having to package and keep all your dependencies up to date.
77

88

lib/java_buildpack/buildpack.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def names(components)
188188
end
189189

190190
def no_container
191-
raise 'No container can run this application. Please ensure that youve pushed a valid JVM artifact or ' \
191+
raise 'No container can run this application. Please ensure that you\'ve pushed a valid JVM artifact or ' \
192192
'artifacts using the -p command line argument or path manifest entry. Information about valid JVM ' \
193193
'artifacts can be found at https://github.com/cloudfoundry/java-buildpack#additional-documentation. '
194194
end

0 commit comments

Comments
 (0)