-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
44 lines (33 loc) · 979 Bytes
/
build.gradle
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
43
44
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "6.1.0"
}
group 'org.narses'
version 'DEVELOPMENTBUILD-ALPHA'
targetCompatibility = '17'
repositories {
mavenCentral()
// Minestom repos
maven { url 'https://repo.spongepowered.org/maven' }
maven { url 'https://jitpack.io' }
}
dependencies {
// Minestom
implementation 'com.github.Minestom:Minestom:-SNAPSHOT'
// Entity library
// implementation 'com.github.projectnarses:NarsionEntities:0f426215bb'
// Item library
implementation 'com.github.KrystilizeNevaDies:Itemize:86558ef650'
// Toml config library
implementation 'com.github.mwanji:toml4j:4d206e4af6'
// sftp library
implementation "com.jcraft:jsch:0.1.55"
// Raycast Library
implementation 'com.github.EmortalMC:Rayfast:34a50846af'
}
jar {
manifest {
attributes 'Main-Class': 'org.narses.narsion.BootstrapDevServer',
"Multi-Release": true
}
}