plugins { id 'com.github.johnrengelman.shadow' version '7.0.0' id 'java' } group 'ru.nanit' version '1.2.2' repositories { mavenCentral() } dependencies { testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' implementation files('libs/napi-configurate-yaml-1.0.jar') implementation group: 'org.yaml', name: 'snakeyaml', version: '1.27' implementation group: 'io.netty', name: 'netty-all', version: '4.1.54.Final' implementation group: 'net.kyori', name: 'adventure-nbt', version: '4.1.1' } jar { manifest { attributes('Main-Class': 'ru.nanit.limbo.NanoLimbo') } } shadowJar{ minimize() } test { useJUnitPlatform() }