plugins { id 'java' id 'com.github.johnrengelman.shadow' version '5.2.0' } group 'tech.nevets' version '1.0' repositories { mavenCentral() } dependencies { implementation 'com.sparkjava:spark-core:2.9.4' implementation 'org.slf4j:slf4j-simple:2.0.3' implementation 'com.google.code.gson:gson:2.10' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' } test { useJUnitPlatform() } shadowJar { manifest { attributes( 'Main-Class': 'tech.nevets.todoserver.Server' ) } }