Skip to content

Commit 64afa98

Browse files
author
Glyn Normington
committed
Merge 52140727- to master
[#52140727]
2 parents 6820b1d + 72a924a commit 64afa98

4 files changed

Lines changed: 39 additions & 18 deletions

File tree

docs/container-java-main.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# Java Main Class Container
22
The Java Main Class Container allows applications that provide a class with a `main()` method in it to be run. These applications are run with a command that looks like `./java/bin/java -cp . com.gopivotal.SampleClass`.
33

4-
| Detection ||
5-
| --- | ---
6-
| **Detection Criteria** | `Main-Class` attribute set in `META-INF/MANIFEST.MF` or `java_main_class` set
7-
| **Tags** | `java-main` is printed to standard output by the buildpack detect script
4+
<table>
5+
<tr>
6+
<td><strong>Detection Criteria:</strong></td><td><tt>Main-Class</tt> attribute set in <tt>META-INF/MANIFEST.MF</tt> or <tt>java_main_class</tt> set</td>
7+
</tr>
8+
<tr>
9+
<td><strong>Tags:</strong></td><td><tt>java-main</tt></td>
10+
</tr>
11+
</table>
12+
Tags are printed to standard output by the buildpack detect script
813

914
## Configuration
1015
The container can be configured by modifying the [`config/main.yml`][main_yml] file.

docs/container-tomcat.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Tomcat Container
22
The Tomcat Container allows web application to be run. These applications are run as the root web application in a Tomcat container.
33

4-
| Detection ||
5-
| --- | ---
6-
| **Detection Criteria** | Existence of a `WEB-INF/` folder in the application directory
7-
| **Tags** | `tomcat-<version>` is printed to standard output by the buildpack detect script
4+
<table>
5+
<tr>
6+
<td><strong>Detection Criterion:</strong></td><td>Existence of a <tt>WEB-INF/</tt> folder in the application directory</td>
7+
</tr>
8+
<tr>
9+
<td><strong>Tags:</strong></td><td><tt>tomcat-&lang;version&rang;</tt></td>
10+
</tr>
11+
</table>
12+
Tags are printed to standard output by the buildpack detect script
13+
814

915
## Configuration
1016
The container can be configured by modifying the [`config/tomcat.yml`][tomcat_yml] file. The container uses the [`Repository` utility support][util_repositories] and so it supports the [version syntax][version_syntax] defined there.

docs/framework-java_opts.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# `JAVA_OPTS` Framework
22
The `JAVA_OPTS` Framework contributes arbitrary Java options to the application at runtime.
3-
4-
| Detection ||
5-
| --- | ---
6-
| **Detection Criteria** | `java_opts` set
7-
| **Tags** | `openjdk-<version>` is printed to standard output by the buildpack detect script
3+
4+
<table>
5+
<tr>
6+
<td><strong>Detection Criterion:</strong></td><td><ptt>java_opts</tt> set</td>
7+
</tr>
8+
<tr>
9+
<td><strong>Tags:</strong></td><td><tt>java-opts</tt></td>
10+
</tr>
11+
</table>
12+
Tags are printed to standard output by the buildpack detect script
13+
814

915
## Configuration
1016
The framework can be configured by modifying the [`config/java_opts.yml`][java_opts_yml] file.

docs/jre-openjdk.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ The OpenJDK JRE provides Java runtimes from the [OpenJDK][openjdk] project. Ver
44
[openjdk]: http://openjdk.java.net
55
[openjdk_yml]: ../config/openjdk.yml
66

7-
| Detection ||
8-
| --- | ---
9-
| **Detection Criteria** | Unconditional
10-
| **Tags** | `openjdk-<version>` is printed to standard output by the buildpack detect script
11-
7+
<table>
8+
<tr>
9+
<td><strong>Detection Criterion:</strong></td><td>Unconditional</td>
10+
</tr>
11+
<tr>
12+
<td><strong>Tags:</strong></td><td><tt>openjdk-&lang;version&rang;</tt></td>
13+
</tr>
14+
</table>
15+
Tags are printed to standard output by the buildpack detect script
1216

1317
## Configuration
1418
The JRE can be configured by modifying the [`config/openjdk.yml`][openjdk_yml] file. The JRE uses the [`Repository` utility support][util_repositories] and so it supports the [version syntax][version_syntax] defined there.

0 commit comments

Comments
 (0)