-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
41 lines (30 loc) · 1.28 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 'ethelred-games.java-application-conventions'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation group: 'io.javalin', name: 'javalin', version: '5.6.3'
implementation 'org.eclipse.jetty:jetty-proxy:11.0.18'
implementation 'info.picocli:picocli:4.7.5'
implementation 'com.github.callicoder:java-snowflake:a166af56e2'
implementation libs.bundles.jackson
implementation(project(":engine"))
implementation(project(":games:nuo"))
implementation 'com.google.dagger:dagger:2.50'
testImplementation 'org.hamcrest:hamcrest-core:2.2'
annotationProcessor 'com.google.dagger:dagger-compiler:2.50'
implementation 'javax.inject:javax.inject:1'
implementation 'com.google.guava:guava:32.1.3-jre'
testAnnotationProcessor 'com.google.dagger:dagger-compiler:2.50'
testImplementation platform('com.agorapulse:gru-bom:1.4.0')
testImplementation 'com.agorapulse:gru-http'
// ref https://evojam.com/technology-blog/2020/5/18/the-secret-of-painless-websocket-tests-with-spock-framework
testImplementation 'com.neovisionaries:nv-websocket-client:2.14'
testImplementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.12'
}
application {
mainClass = 'org.ethelred.games.server.Main'
}