File size: 5,242 Bytes
8d4dde5
 
c148a1c
8d4dde5
 
 
 
 
 
 
 
 
 
 
 
 
 
8c86632
 
 
 
 
 
 
8d4dde5
8c86632
8bf40fb
9353ba8
8d4dde5
9353ba8
 
 
68099f2
 
 
 
 
 
 
40497bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7b46d43
40497bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8d4dde5
 
8c86632
8d4dde5
 
 
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
plugins {
    java
    id("org.springframework.boot") version "2.6.6"
    id("io.spring.dependency-management") version "1.1.0"
}

group = "ai.giskard"
version = "0.0.1-SNAPSHOT"

java {
    sourceCompatibility = JavaVersion.VERSION_17
}

repositories {
    mavenCentral()
}

val grpcVersion: String by project.extra.properties
val jhipsterDependenciesVersion: String by project.extra.properties
val jaxbRuntimeVersion: String by project.extra.properties
val archunitJunit5Version: String by project.extra.properties
val springBootVersion: String by project.extra.properties
val mapstructVersion: String by project.extra.properties

dependencies {

    implementation("org.springframework.boot:spring-boot-starter-security")
    implementation("org.springframework.boot:spring-boot-starter-web")
    implementation("org.springframework.boot:spring-boot-starter-websocket")

//    -----------------------------------------------------------------------------------------------------------------------------------------------

    implementation("io.grpc:grpc-netty:$grpcVersion")
    implementation("io.grpc:grpc-census:$grpcVersion")
    implementation("io.grpc:grpc-protobuf:$grpcVersion")
    implementation("io.grpc:grpc-stub:$grpcVersion")



    implementation(platform("tech.jhipster:jhipster-dependencies:${jhipsterDependenciesVersion}"))
    implementation(group = "tech.jhipster", name = "jhipster-framework")
    implementation("javax.annotation:javax.annotation-api")
    implementation("io.dropwizard.metrics:metrics-core")
    implementation("io.micrometer:micrometer-registry-prometheus")
    implementation("com.fasterxml.jackson.datatype:jackson-datatype-hppc")
    implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
    implementation("com.fasterxml.jackson.module:jackson-module-jaxb-annotations")
    implementation("com.fasterxml.jackson.core:jackson-annotations")
    implementation("com.fasterxml.jackson.core:jackson-databind")
    implementation("com.zaxxer:HikariCP")
    implementation("org.apache.commons:commons-lang3")
    implementation("javax.transaction:javax.transaction-api")


    implementation("org.springframework.boot:spring-boot-loader-tools")

    implementation("org.springframework.boot:spring-boot-starter-mail")
    implementation("org.springframework.boot:spring-boot-starter-logging")
    implementation("org.springframework.boot:spring-boot-starter-actuator")
//    implementation("org.springframework.boot:spring-boot-starter-data-jpa")
    implementation("org.springframework.boot:spring-boot-starter-websocket")
    implementation("org.springframework.security:spring-security-messaging")
    implementation("org.springframework.boot:spring-boot-starter-security")
    implementation("org.springframework.boot:spring-boot-starter-web") {
        exclude(module = "spring-boot-starter-tomcat")
    }
    implementation("org.springframework.boot:spring-boot-starter-undertow")
    implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
    implementation("org.zalando:problem-spring-web")
    implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
    implementation("org.springframework.security:spring-security-config")
    implementation("org.springframework.security:spring-security-data")
    implementation("org.springframework.security:spring-security-web")
    implementation("io.jsonwebtoken:jjwt-api")
    implementation(group = "tech.tablesaw", name = "tablesaw-core", version = "0.43.1")
    implementation(group = "tech.tablesaw", name = "tablesaw-json", version = "0.34.2")
    implementation(group = "org.apache.commons", name = "commons-compress", version = "1.21")
    runtimeOnly("io.jsonwebtoken:jjwt-impl")
    runtimeOnly("io.jsonwebtoken:jjwt-jackson")

    implementation("org.springdoc:springdoc-openapi-webmvc-core")
    implementation(group = "org.springdoc", name = "springdoc-openapi-ui", version = "1.6.11")


    annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
    testRuntimeOnly("com.tngtech.archunit:archunit-junit5-engine:${archunitJunit5Version}")
    developmentOnly("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
//    protobuf(files("../common/proto"))

    compileOnly("org.projectlombok:lombok")
    annotationProcessor("org.projectlombok:lombok")
    // MapStruct
    compileOnly("org.mapstruct:mapstruct:${mapstructVersion}")
    annotationProcessor("org.mapstruct:mapstruct-processor:${mapstructVersion}")

    implementation(files("$projectDir/src/main/resources/third-party/j2ts-api.jar"))
    implementation(group = "com.fasterxml.jackson.dataformat", name = "jackson-dataformat-yaml", version = "2.14.2")
    implementation(group = "com.github.luben", name = "zstd-jni", version = "1.5.2-3")
    implementation("org.apache.commons:commons-compress:1.21")
    implementation("org.apache.commons:commons-csv:1.10.0")
    implementation("commons-codec:commons-codec:1.15")
    implementation("com.google.protobuf:protobuf-java-util:3.21.9")

    implementation("commons-fileupload:commons-fileupload:1.4")
    implementation("commons-io:commons-io:2.11.0")
}


tasks.withType<Test> {
    useJUnitPlatform()
}