Skip to content

Commit

Permalink
Merge pull request #89 from arcticicestudio/feature/gh-86-gradle_opts
Browse files Browse the repository at this point in the history
GRADLE_OPTS
  • Loading branch information
arcticicestudio authored Nov 29, 2017
2 parents 9cf7207 + e0a01ab commit bffaf26
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions snowblocks/bash/config/pkg/gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
# Copyright (c) 2016-2017 Arctic Ice Studio <[email protected]>
# Copyright (c) 2016-2017 Sven Greb <[email protected]>

# Project: igloo
# Repository: https://github.com/arcticicestudio/igloo
# License: MIT
# References:
# https://docs.gradle.org/current/userguide/gradle_command_line.html
# https://docs.gradle.org/current/userguide/build_environment.html
# https://docs.gradle.org/current/userguide/console.html#sec:console_build_output

# Set the default system-wide Gradle options.
#
# > org.gradle.daemon
# Enable to always use the Gradle daemon to run builds.
# Since Gradle 3.0, daemon is enabled by default and is recommended for running Gradle.
# > org.gradle.console
# Use "rich" level to always colorize console output.
export GRADLE_OPTS="-Dorg.gradle.daemon=true -Dorg.gradle.console=rich"

0 comments on commit bffaf26

Please sign in to comment.