init refactoring exercise
This commit is contained in:
13
dev_ops/gradle/uebung-02/build.gradle
Normal file
13
dev_ops/gradle/uebung-02/build.gradle
Normal file
@@ -0,0 +1,13 @@
|
||||
plugins {
|
||||
id "de.undercouch.download" version "4.1.1"
|
||||
}
|
||||
|
||||
task download(type: Download) {
|
||||
src 'http://st.uni-trier.de/Gradle/Rezept.zip'
|
||||
dest buildDir
|
||||
onlyIfModified true
|
||||
}
|
||||
|
||||
task unzip(type: Copy, dependsOn: download) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user