plugins {
    id 'java'
    id "com.github.johnrengelman.shadow" version "7.1.0"
}

group = '' +
        ''
version = '1.0'

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

dependencies {

    implementation 'com.github.Minestom:Minestom:8ad2c7701f'
}

jar {
    manifest {
        attributes 'Main-Class': 'eu.mhsl.craftattack.worldmuseum.Main',
                "Multi-Release": true
    }
}