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

GRADLE_OPTS #89

Merged
merged 1 commit into from
Nov 29, 2017
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
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 <development@arcticicestudio.com>
# Copyright (c) 2016-2017 Sven Greb <code@svengreb.de>

# 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"