-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (29 loc) · 800 Bytes
/
build.gradle
File metadata and controls
39 lines (29 loc) · 800 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
37
38
plugins {
id('java')
id('idea')
id('io.dinject.openapi') version('1.2')
}
group = 'org.example'
version = '1.1-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile('io.javalin:javalin:3.1.0')
compile('com.fasterxml.jackson.core:jackson-databind:2.9.9')
compile('org.avaje.composite:logback:1.1')
compile('io.dinject:dinject:1.11')
compile('io.dinject:dinject-controller:1.9')
compile 'io.swagger.core.v3:swagger-annotations:2.0.8'
annotationProcessor('io.dinject:dinject-generator:1.11')
annotationProcessor('io.dinject:javalin-generator:1.9')
testCompile('junit:junit:4.12')
}
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
openapi {
destination = 'other/dest2.json'
}