-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (27 loc) · 1.02 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '6.0.0'
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
compile group: 'com.jinyframework', name: 'core', version: '0.3.3'
compile group: 'com.jinyframework', name: 'cors-middleware', version: '0.3.3'
compile group: 'com.jinyframework', name: 'websocket', version: '0.3.3'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
compile group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.1.0-beta2'
compile group: 'com.auth0', name: 'java-jwt', version: '3.11.0'
// Logger
compile group: 'ch.qos.logback', name:'logback-classic', version: '1.0.9'
compile group: 'ch.qos.logback', name:'logback-core', version: '1.0.9'
// Use JUnit test framework
testImplementation 'junit:junit:4.13'
}
application {
mainClassName = 'io.oddgame.jodd.Main'
}