Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- id 'org.jetbrains.kotlin.jvm' version '1.6.20'
- id 'java'
- id 'com.github.johnrengelman.shadow' version '7.1.2'
- }
- group 'org.example'
- version '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- repositories {
- maven {
- url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
- // As of Gradle 5.1, you can limit this to only those
- // dependencies you expect from it
- content {
- includeGroup 'org.bukkit'
- includeGroup 'org.spigotmc'
- }
- }
- maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
- maven { url = 'https://oss.sonatype.org/content/repositories/central' }
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib"
- compileOnly 'org.spigotmc:spigot-api:1.18.2-R0.1-SNAPSHOT' // The Spigot API with no shadowing. Requires the OSS repo.
- }
- test {
- useJUnitPlatform()
- }
Add Comment
Please, Sign In to add comment