Mitt arbete är för att man ska skriva in en film titel och man får en overview av den filmen Men det finns små fel som kom nu i slutet och jag har inte hunit fixa det änu :(

This commit is contained in:
Noah F
2025-06-09 01:03:32 +02:00
parent 70e7e24aaa
commit f8680b1cab
11 changed files with 216 additions and 13 deletions

20
MovieSugest/build.gradle Normal file
View File

@@ -0,0 +1,20 @@
plugins {
id 'java'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation project(":Core")
}
test {
useJUnitPlatform()
}