-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (27 loc) · 812 Bytes
/
build.gradle
File metadata and controls
36 lines (27 loc) · 812 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
plugins {
id 'java'
}
group 'net.programmer.igoodie'
version '1.0.0'
sourceCompatibility = 1.8
repositories {
maven { url 'https://jitpack.io' }
mavenCentral()
}
dependencies {
// RuntimeGoodies
implementation "com.github.iGoodie:RuntimeGoodies:1.1.0"
// TheSpawnLanguage (TSL)
implementation 'com.github.TheSpawnProject:TheSpawnLanguage:c8d9e2a321'
// SocketIO Client
implementation "io.socket:socket.io-client:1.0.0"
// JUnit 5 for testings
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
// Guava for testings
testImplementation 'com.google.guava:guava:31.1-jre'
}
test {
useJUnitPlatform()
}