-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (33 loc) · 785 Bytes
/
build.gradle
File metadata and controls
42 lines (33 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "6.1.0"
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://repo.spongepowered.org/maven' }
maven { url 'https://repo.velocitypowered.com/snapshots/' }
maven { url 'https://libraries.minecraft.net' }
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.github.Minestom:Minestom:-SNAPSHOT'
compile 'org.mongodb:mongodb-driver-sync:4.2.0'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes "Multi-Release": true,
"Main-Class": "io.egg.minigames.Main"
}
}
application {
mainClass = 'io.egg.minigames.Main'
}
shadow {
mainClassName = "io.egg.minigames.Main"
}