This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
overlay: 1.0.0 | |
info: | |
title: Add MIT license | |
version: 1.0.0 | |
actions: | |
- target: '$.info' | |
update: | |
license: | |
name: MIT | |
url: https://opensource.org/licenses/MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bash/sh script to install Gradle to /opt/gradle/gradle-2.14 with symlink /opt/gradle/latest | |
# Existing versions are not overwritten/deleted | |
# $GRADLE_HOME points to latest *installed* (not latest released) | |
# paste this into a shell or execute it with . install-gradle-centos.sh | |
gradle_version=2.14 | |
zip=gradle-${gradle_version}-all.zip | |
test -d /opt/gradle || sudo /bin/mkdir -p /opt/gradle | |
cd /opt/gradle | |
sudo /bin/wget -N --no-directories --quiet https://downloads.gradle.org/distributions/$zip |