aboutsummaryrefslogtreecommitdiff
path: root/central/build.gradle
blob: af18c0fb62f6f7fcb83564a92b08eace9e67f26c (plain)
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
42
43
44
45
46
47
48
49
50
plugins {
    id 'java'
    id 'application'
}

group 'moe.yuuta'
version project.ver

sourceCompatibility = 1.8
targetCompatibility = 1.8

application {
    getMainClass().set('moe.yuuta.dn42peering.Main')
}

dependencies {
    compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
    implementation 'org.apache.commons:commons-text:1.9'
    implementation 'commons-net:commons-net:3.7.2'

    implementation 'commons-validator:commons-validator:1.7'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'

    implementation "io.vertx:vertx-core:${project.vertxVersion}"
    implementation "io.vertx:vertx-web:${project.vertxVersion}"
    implementation "io.vertx:vertx-web-templ-freemarker:${project.vertxVersion}"
    implementation "io.vertx:vertx-web-validation:${project.vertxVersion}"
    implementation "io.vertx:vertx-auth-common:${project.vertxVersion}"
    implementation "io.vertx:vertx-mysql-client:${project.vertxVersion}"
    implementation "io.vertx:vertx-mail-client:${project.vertxVersion}"
    implementation "io.vertx:vertx-service-proxy:${project.vertxVersion}"
    implementation "io.vertx:vertx-sql-client-templates:${project.vertxVersion}"
    implementation "io.vertx:vertx-config:${project.vertxVersion}"
    annotationProcessor "io.vertx:vertx-sql-client-templates:${project.vertxVersion}"
    annotationProcessor "io.vertx:vertx-codegen:${project.vertxVersion}:processor"
    annotationProcessor "io.vertx:vertx-service-proxy:${project.vertxVersion}"
    compileOnly "io.vertx:vertx-codegen:${project.vertxVersion}"
    implementation "io.vertx:vertx-grpc:${project.vertxVersion}"
    implementation "io.vertx:vertx-web-api-service:${project.vertxVersion}"
    annotationProcessor "io.vertx:vertx-web-api-service:${project.vertxVersion}"
    implementation "org.flywaydb:flyway-core:7.7.2"
    implementation "org.mariadb.jdbc:mariadb-java-client:2.7.2"

    implementation project(':rpc-common')
}

test {
    useJUnitPlatform()
}