plugins { kotlin("jvm") version "2.0.0" } group = "org.example" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { testImplementation(kotlin("test")) implementation("com.github.kittinunf.fuel:fuel:3.0.0-alpha03") } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(17) }