Skip to content

Instantly share code, notes, and snippets.

@NewGyu
Created February 10, 2015 18:20
Show Gist options
  • Save NewGyu/46c939ae5f3f07211ddd to your computer and use it in GitHub Desktop.
Save NewGyu/46c939ae5f3f07211ddd to your computer and use it in GitHub Desktop.
Gradleには設定ファイルがいっぱい ref: http://qiita.com/NewGyu/items/c145136c256f801e1402
apply from: "settings/confA.gradle"
task hoge << {
println "value:${nanika}"
}
ext {
nanika="なにか?"
}
myproject/
├── build.gradle
├── gradle.properties
└── settings.gradle
ext {
hoge.fuga="extで設定したよ"
}
ext {
set("hoge.fuga","extで設定したよ")
}
$ ./gradlew hoge -Phoge.fuga=commandline
$ ./gradlew hoge -Dhoge.fuga=commandline
hoge.fuga=hogehogefugafuga
piyo=piyopiyo
myProject
├── build.gradle
└── settings
└── confA.gradle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment