This repository has been archived on 2023-08-10. You can view files and clone it, but cannot push or open issues or pull requests.
Files
MineNetPvE/build.gradle
2022-07-05 10:05:22 +02:00

29 lines
557 B
Groovy

plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.1.0"
}
group 'eu.mhsl.minenet'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
implementation 'com.github.Minestom:Minestom:ab5734334c'
}
jar {
manifest {
attributes 'Main-Class': 'eu.mhsl.minenet.minestom.pve.Main',
'Multi-Release': true
}
}