-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
41 lines (31 loc) · 1.13 KB
/
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
maven {
name = "sonatype-oss-snapshots"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
mavenCentral()
maven { url 'https://repo.spongepowered.org/maven' }
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
implementation 'com.github.Minestom:Minestom:bf3ce1dfb0306e50ad563a2df6853a7a2f4c3588'
// https://mvnrepository.com/artifact/org.apache.commons/commons-text
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.9'
// https://mvnrepository.com/artifact/org.eclipse.dirigible/dirigible-engine-javascript-graalvm
implementation group: 'org.eclipse.dirigible', name: 'dirigible-engine-javascript-graalvm', version: '5.8.0'
implementation "net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT"
}
test {
useJUnitPlatform()
}
shadowJar {
archiveName("reddox.jar")
}