Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add local build optimizations via gradle.properties #183

Merged
merged 1 commit into from
Nov 28, 2019
Merged
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
19 changes: 19 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# When set to true, Gradle will reuse task outputs from any previous
# build, when possible, resulting is much faster builds.
org.gradle.caching=true

# Enables incubating configuration on demand, where Gradle will
# attempt to configure only necessary projects.
org.gradle.configureondemand=true

# When configured, Gradle will fork up
# to `org.gradle.workers.max` JVMs to execute projects in parallel.
# The default value is the number of processors available to the
# build JVM (as reported by Runtime.availableProcessors()).
org.gradle.parallel=true
org.gradle.workers.max=3

# Incremental compilation tracks changes of source files between builds
# so only files affected by these changes would be compiled.
kotlin.incremental=true