init refactoring exercise

This commit is contained in:
2024-11-27 13:09:22 +01:00
parent 51f58d19bc
commit e31f2e3544
134 changed files with 3057 additions and 61 deletions

View File

@@ -0,0 +1,2 @@
#Tue Nov 05 15:48:22 CET 2024
gradle.version=8.10.2

Binary file not shown.

View 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) {
}

Binary file not shown.