-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (35 loc) · 1.22 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "6.0.0"
}
group 'io.ib67'
version '0.0.1'
repositories {
mavenCentral()
maven {
url 'https://repo.codemc.io/repository/nms-local/'
}
maven {url 'https://libraries.minecraft.net'}
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testRuntimeOnly 'io.pebbletemplates:pebble:3.1.5'
testRuntimeOnly 'com.jayway.jsonpath:json-path:2.6.0'
testRuntimeOnly 'com.google.code.gson:gson:2.8.6'
testImplementation 'com.github.saltedfishclub:PolarCore:dev-SNAPSHOT'
compileOnly 'org.greenrobot:eventbus:3.2.0'
compileOnly 'org.slf4j:slf4j-api:1.7.30'
compileOnly 'com.github.saltedfishclub:PolarCore:dev-SNAPSHOT'
implementation 'io.pebbletemplates:pebble:3.1.5'
implementation 'com.jayway.jsonpath:json-path:2.6.0'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
compileOnly 'com.google.code.gson:gson:2.8.6'
compileOnly 'com.github.project-polar:RESTful:-SNAPSHOT'
}
test {
useJUnitPlatform()
}