-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 836 Bytes
/
Copy pathbuild.gradle
File metadata and controls
26 lines (22 loc) · 836 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
plugins {
id 'java'
id 'application'
}
mainClassName = 'com.rs.Server'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// https://mvnrepository.com/artifact/com.cedarsoftware/json-io
implementation 'com.cedarsoftware:json-io:4.9.12'
// https://mvnrepository.com/artifact/org.codehaus.groovy/groovy
implementation 'org.codehaus.groovy:groovy:2.5.2'
// https://mvnrepository.com/artifact/com.google.inject/guice
implementation 'com.google.inject:guice:4.2.0'
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.1'
// https://mvnrepository.com/artifact/org.junit.platform/junit-platform-engine
testRuntime 'org.junit.platform:junit-platform-engine:1.3.1'
}
repositories {
mavenCentral()
}