plugins { id 'java' id 'com.github.johnrengelman.shadow' version '5.2.0' } group 'tech.nevets' version '1.1.0' repositories { mavenCentral() } dependencies { implementation 'com.sparkjava:spark-core:2.9.4' } shadowJar { manifest { attributes( 'Main-Class': 'tech.nevets.beerestapi.Main' ) } }