-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathbuild.gradle
37 lines (28 loc) · 1.01 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
configurations {
implementation.extendsFrom(micronaut)
}
dependencies {
// micronaut
implementation "info.picocli:picocli"
implementation "io.micronaut.picocli:micronaut-picocli"
implementation "io.micronaut:micronaut-management"
implementation "io.micronaut:micronaut-http-server-netty"
// logs
implementation 'ch.qos.logback.contrib:logback-json-classic'
implementation 'ch.qos.logback.contrib:logback-jackson'
// aether still use javax.inject
compileOnly 'javax.inject:javax.inject:1'
// modules
implementation project(":core")
implementation project(":script")
implementation project(":repository-memory")
implementation project(":runner-memory")
implementation project(":jdbc")
implementation project(":jdbc-h2")
implementation project(":jdbc-mysql")
implementation project(":jdbc-postgres")
implementation project(":storage-local")
implementation project(":webserver")
//test
testImplementation "org.wiremock:wiremock"
}