Softwaretechnik-II/dev_ops/gradle/uebung-02/build.gradle

13 lines
237 B
Groovy
Raw Permalink Normal View History

2024-11-27 13:09:22 +01:00
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) {
}