Skip to content

Commit

Permalink
Merge branch 'master' into adam/feat/KT-70336/android-integration-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko committed Nov 13, 2024
2 parents 5053890 + 15986f6 commit ed5b511
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ constructor(

dokkaExtension.dokkaGeneratorIsolation.convention(
dokkaExtension.ProcessIsolation {
maxHeapSize.convention("2g")
debug.convention(false)
jvmArgs.convention(
listOf(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ data class GradlePropertiesBuilder(
/** Gradle specific options. */
data class GradleArgs(
var logLevel: LogLevel? = LogLevel.LIFECYCLE,
var stacktrace: Boolean? = true,
/** Valid values are: `internal`, `all`, `full`. */
var stacktrace: String? = "all",
var debug: Boolean? = null,
var buildCache: Boolean? = true,
var buildCacheDebugLog: Boolean? = null,
Expand Down

0 comments on commit ed5b511

Please sign in to comment.