Skip to content

Commit

Permalink
Merge pull request #6 from paketo-buildpacks/add_missing_configurations
Browse files Browse the repository at this point in the history
Add missing configurations
  • Loading branch information
Daniel Mikusa authored Oct 15, 2021
2 parents 9f961ad + f3f0aa3 commit 0d4b686
Showing 1 changed file with 32 additions and 14 deletions.
46 changes: 32 additions & 14 deletions buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,6 @@ description = "the number of threads in memory calculation"
default = "250"
launch = true

[[metadata.configurations]]
name = "BPL_HEAP_DUMP_PATH"
description = "write heap dumps on error to this path"
default = ""
launch = true

[[metadata.configurations]]
name = "BPL_JAVA_NMT_ENABLED"
description = "enables Java Native Memory Tracking (NMT)"
Expand All @@ -72,16 +66,40 @@ default = "summary"
launch = true

[[metadata.configurations]]
name = "BPL_JAVA_NMT_ENABLED"
description = "enables Java Native Memory Tracking (NMT)"
default = "true"
launch = true
name = "BPL_JMX_ENABLED"
description = "enables Java Management Extensions (JMX)"
default = "false"
launch = true

[[metadata.configurations]]
name = "BPL_JAVA_NMT_LEVEL"
description = "configure level of NMT, summary or detail"
default = "summary"
launch = true
name = "BPL_JMX_PORT"
description = "configure the JMX port"
default = "5000"
launch = true

[[metadata.configurations]]
name = "BPL_DEBUG_ENABLED"
description = "enables Java remote debugging support"
default = "false"
launch = true

[[metadata.configurations]]
name = "BPL_DEBUG_PORT"
description = "configure the remote debugging port"
default = "8000"
launch = true

[[metadata.configurations]]
name = "BPL_DEBUG_SUSPEND"
description = "configure whether to suspend execution until a debugger has attached"
default = "false"
launch = true

[[metadata.configurations]]
name = "BPL_HEAP_DUMP_PATH"
description = "write heap dumps on error to this path"
default = ""
launch = true

[[metadata.configurations]]
name = "BP_JVM_VERSION"
Expand Down

0 comments on commit 0d4b686

Please sign in to comment.