/* * This file was generated by the Gradle 'init' task. * * This is a general purpose Gradle build. * To learn more about Gradle by exploring our Samples at https://docs.gradle.org/8.5/samples */ /* * This file was generated by the Gradle 'init' task. */ plugins { id 'java' id 'java-library' id 'maven-publish' id 'com.github.johnrengelman.shadow' version '8.1.1' } group = 'land.chipmunk.parker2991' version = 'v6.0.0-alpha(ff08479)' description = 'FNFBoyfriendBot' java.sourceCompatibility = JavaVersion.VERSION_17 repositories { mavenLocal() mavenCentral() maven { url = uri('https://repo.opencollab.dev/maven-snapshots/') } maven { url = uri('https://repo.opencollab.dev/maven-releases/') } maven { url = uri('https://repo.maven.apache.org/maven2/') } maven { url = uri("https://jitpack.io") } maven { url = uri('https://maven.maxhenkel.de/repository/public') } } dependencies { implementation 'com.github.steveice10:mcprotocollib:1.20.2-1-SNAPSHOT' implementation 'net.kyori:adventure-text-serializer-ansi:4.14.0' implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.guava:guava:31.1-jre' implementation 'org.jline:jline:3.23.0' implementation 'org.yaml:snakeyaml:2.0' } jar { manifest { attributes 'Main-Class': 'land.chipmunk.parker2991.fnfboyfriendbot.Main' } } tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' } tasks.withType(Javadoc).configureEach { options.encoding = 'UTF-8' }