plugins { id 'java' id 'com.github.johnrengelman.shadow' version '5.2.0' } group 'tech.nevets.vcardgen' version '1.1' 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' } jar { manifest { attributes( 'Main-Class': 'tech.nevets.vcardgen.Main' ) } }