This repository has been archived on 2024-08-29. You can view files and clone it, but cannot push or open issues or pull requests.
world-museum/build.gradle
2023-04-15 23:22:10 +02:00

25 lines
420 B
Groovy

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
}
}