Spaces:
Sleeping
Sleeping
Commit
·
f5e5ac2
1
Parent(s):
4c3d188
changes
Browse files- build.gradle.kts +36 -36
build.gradle.kts
CHANGED
@@ -76,50 +76,50 @@ dependencies {
|
|
76 |
implementation("org.springframework.boot:spring-boot-starter-web") {
|
77 |
exclude(module = "spring-boot-starter-tomcat")
|
78 |
}
|
79 |
-
|
80 |
-
|
81 |
// implementation("org.zalando:problem-spring-web")
|
82 |
// implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
|
|
|
|
86 |
// implementation("io.jsonwebtoken:jjwt-api")
|
87 |
-
// implementation(group = "tech.tablesaw", name = "tablesaw-core", version = "0.43.1")
|
88 |
-
// implementation(group = "tech.tablesaw", name = "tablesaw-json", version = "0.34.2")
|
89 |
-
// implementation(group = "org.apache.commons", name = "commons-compress", version = "1.21")
|
90 |
// runtimeOnly("io.jsonwebtoken:jjwt-impl")
|
91 |
// runtimeOnly("io.jsonwebtoken:jjwt-jackson")
|
92 |
-
|
93 |
// implementation("org.springdoc:springdoc-openapi-webmvc-core")
|
94 |
// implementation(group = "org.springdoc", name = "springdoc-openapi-ui", version = "1.6.11")
|
95 |
-
implementation("org.postgresql:postgresql")
|
96 |
-
|
97 |
-
implementation("com.h2database:h2")
|
98 |
-
//
|
99 |
-
//
|
100 |
-
//// annotationProcessor("org.hibernate:hibernate-jpamodelgen:${hibernateVersion}.Final")
|
101 |
-
// annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
|
102 |
-
// testRuntimeOnly("com.tngtech.archunit:archunit-junit5-engine:${archunitJunit5Version}")
|
103 |
-
// developmentOnly("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
|
104 |
-
//// protobuf(files("../common/proto"))
|
105 |
-
//
|
106 |
-
// compileOnly("org.projectlombok:lombok")
|
107 |
-
// annotationProcessor("org.projectlombok:lombok")
|
108 |
-
// // MapStruct
|
109 |
-
// compileOnly("org.mapstruct:mapstruct:${mapstructVersion}")
|
110 |
-
// annotationProcessor("org.mapstruct:mapstruct-processor:${mapstructVersion}")
|
111 |
-
//
|
112 |
-
// implementation(files("$projectDir/src/main/resources/third-party/j2ts-api.jar"))
|
113 |
-
// implementation(group = "com.fasterxml.jackson.dataformat", name = "jackson-dataformat-yaml", version = "2.14.2")
|
114 |
-
// implementation(group = "com.github.luben", name = "zstd-jni", version = "1.5.2-3")
|
115 |
-
// implementation("org.apache.commons:commons-compress:1.21")
|
116 |
-
// implementation("org.apache.commons:commons-csv:1.10.0")
|
117 |
-
// implementation("commons-codec:commons-codec:1.15")
|
118 |
-
// implementation("com.google.protobuf:protobuf-java-util:3.21.9")
|
119 |
-
//// implementation("com.github.blagerweij:liquibase-sessionlock:1.6.2")
|
120 |
//
|
121 |
-
// implementation("
|
122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
124 |
|
125 |
|
|
|
76 |
implementation("org.springframework.boot:spring-boot-starter-web") {
|
77 |
exclude(module = "spring-boot-starter-tomcat")
|
78 |
}
|
79 |
+
implementation("org.springframework.boot:spring-boot-starter-undertow")
|
80 |
+
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
81 |
// implementation("org.zalando:problem-spring-web")
|
82 |
// implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
|
83 |
+
implementation("org.springframework.security:spring-security-config")
|
84 |
+
implementation("org.springframework.security:spring-security-data")
|
85 |
+
implementation("org.springframework.security:spring-security-web")
|
86 |
+
implementation(group = "tech.tablesaw", name = "tablesaw-core", version = "0.43.1")
|
87 |
+
implementation(group = "tech.tablesaw", name = "tablesaw-json", version = "0.34.2")
|
88 |
+
implementation(group = "org.apache.commons", name = "commons-compress", version = "1.21")
|
89 |
// implementation("io.jsonwebtoken:jjwt-api")
|
|
|
|
|
|
|
90 |
// runtimeOnly("io.jsonwebtoken:jjwt-impl")
|
91 |
// runtimeOnly("io.jsonwebtoken:jjwt-jackson")
|
92 |
+
|
93 |
// implementation("org.springdoc:springdoc-openapi-webmvc-core")
|
94 |
// implementation(group = "org.springdoc", name = "springdoc-openapi-ui", version = "1.6.11")
|
95 |
+
// implementation("org.postgresql:postgresql")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
//
|
97 |
+
// implementation("com.h2database:h2")
|
98 |
+
|
99 |
+
|
100 |
+
// annotationProcessor("org.hibernate:hibernate-jpamodelgen:${hibernateVersion}.Final")
|
101 |
+
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
|
102 |
+
testRuntimeOnly("com.tngtech.archunit:archunit-junit5-engine:${archunitJunit5Version}")
|
103 |
+
developmentOnly("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
|
104 |
+
// protobuf(files("../common/proto"))
|
105 |
+
|
106 |
+
compileOnly("org.projectlombok:lombok")
|
107 |
+
annotationProcessor("org.projectlombok:lombok")
|
108 |
+
// MapStruct
|
109 |
+
compileOnly("org.mapstruct:mapstruct:${mapstructVersion}")
|
110 |
+
annotationProcessor("org.mapstruct:mapstruct-processor:${mapstructVersion}")
|
111 |
+
|
112 |
+
implementation(files("$projectDir/src/main/resources/third-party/j2ts-api.jar"))
|
113 |
+
implementation(group = "com.fasterxml.jackson.dataformat", name = "jackson-dataformat-yaml", version = "2.14.2")
|
114 |
+
implementation(group = "com.github.luben", name = "zstd-jni", version = "1.5.2-3")
|
115 |
+
implementation("org.apache.commons:commons-compress:1.21")
|
116 |
+
implementation("org.apache.commons:commons-csv:1.10.0")
|
117 |
+
implementation("commons-codec:commons-codec:1.15")
|
118 |
+
implementation("com.google.protobuf:protobuf-java-util:3.21.9")
|
119 |
+
// implementation("com.github.blagerweij:liquibase-sessionlock:1.6.2")
|
120 |
+
|
121 |
+
implementation("commons-fileupload:commons-fileupload:1.4")
|
122 |
+
implementation("commons-io:commons-io:2.11.0")
|
123 |
}
|
124 |
|
125 |
|