Spaces:
Sleeping
Sleeping
Commit
·
9353ba8
1
Parent(s):
6f55a4b
changes
Browse files- build.gradle.kts +101 -92
build.gradle.kts
CHANGED
|
@@ -25,101 +25,110 @@ val mapstructVersion: String by project.extra.properties
|
|
| 25 |
//val liquibaseH2db = file(".liquibase_h2_db")
|
| 26 |
|
| 27 |
dependencies {
|
| 28 |
-
implementation("io.grpc:grpc-netty:$grpcVersion")
|
| 29 |
-
implementation("io.grpc:grpc-census:$grpcVersion")
|
| 30 |
-
implementation("io.grpc:grpc-protobuf:$grpcVersion")
|
| 31 |
-
implementation("io.grpc:grpc-stub:$grpcVersion")
|
| 32 |
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
implementation(platform("tech.jhipster:jhipster-dependencies:${jhipsterDependenciesVersion}"))
|
| 37 |
-
implementation(group = "tech.jhipster", name = "jhipster-framework")
|
| 38 |
-
implementation("javax.annotation:javax.annotation-api")
|
| 39 |
-
implementation("io.dropwizard.metrics:metrics-core")
|
| 40 |
-
implementation("io.micrometer:micrometer-registry-prometheus")
|
| 41 |
-
implementation("com.fasterxml.jackson.datatype:jackson-datatype-hppc")
|
| 42 |
-
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
|
| 43 |
-
implementation("com.fasterxml.jackson.module:jackson-module-jaxb-annotations")
|
| 44 |
-
implementation("com.fasterxml.jackson.datatype:jackson-datatype-hibernate5")
|
| 45 |
-
implementation("com.fasterxml.jackson.core:jackson-annotations")
|
| 46 |
-
implementation("com.fasterxml.jackson.core:jackson-databind")
|
| 47 |
-
implementation("org.hibernate:hibernate-core")
|
| 48 |
-
implementation("com.zaxxer:HikariCP")
|
| 49 |
-
implementation("org.apache.commons:commons-lang3")
|
| 50 |
-
implementation("javax.transaction:javax.transaction-api")
|
| 51 |
-
implementation("org.hibernate:hibernate-entitymanager")
|
| 52 |
-
implementation("org.hibernate.validator:hibernate-validator")
|
| 53 |
-
// implementation("org.liquibase:liquibase-core")
|
| 54 |
-
|
| 55 |
-
// liquibaseRuntime("org.liquibase:liquibase-core")
|
| 56 |
-
// liquibaseRuntime("org.liquibase.ext:liquibase-hibernate5:${liquibaseHibernate5Version}")
|
| 57 |
-
// liquibaseRuntime("org.postgresql:postgresql:42.5.2")
|
| 58 |
-
//// liquibaseRuntime("info.picocli:picocli:4.7.0")
|
| 59 |
-
// liquibaseRuntime(sourceSets.main.get().compileClasspath)
|
| 60 |
-
|
| 61 |
-
implementation("org.springframework.boot:spring-boot-loader-tools")
|
| 62 |
-
|
| 63 |
-
implementation("org.springframework.boot:spring-boot-starter-mail")
|
| 64 |
-
implementation("org.springframework.boot:spring-boot-starter-logging")
|
| 65 |
-
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
| 66 |
-
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
| 67 |
implementation("org.springframework.boot:spring-boot-starter-websocket")
|
| 68 |
-
implementation("org.springframework.security:spring-security-messaging")
|
| 69 |
-
testImplementation("org.testcontainers:postgresql")
|
| 70 |
-
implementation("org.springframework.boot:spring-boot-starter-security")
|
| 71 |
-
implementation("org.springframework.boot:spring-boot-starter-web") {
|
| 72 |
-
exclude(module = "spring-boot-starter-tomcat")
|
| 73 |
-
}
|
| 74 |
-
implementation("org.springframework.boot:spring-boot-starter-undertow")
|
| 75 |
-
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
| 76 |
-
implementation("org.zalando:problem-spring-web")
|
| 77 |
-
implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
|
| 78 |
-
implementation("org.springframework.security:spring-security-config")
|
| 79 |
-
implementation("org.springframework.security:spring-security-data")
|
| 80 |
-
implementation("org.springframework.security:spring-security-web")
|
| 81 |
-
implementation("io.jsonwebtoken:jjwt-api")
|
| 82 |
-
implementation(group = "tech.tablesaw", name = "tablesaw-core", version = "0.43.1")
|
| 83 |
-
implementation(group = "tech.tablesaw", name = "tablesaw-json", version = "0.34.2")
|
| 84 |
-
implementation(group = "org.apache.commons", name = "commons-compress", version = "1.21")
|
| 85 |
-
runtimeOnly("io.jsonwebtoken:jjwt-impl")
|
| 86 |
-
runtimeOnly("io.jsonwebtoken:jjwt-jackson")
|
| 87 |
-
|
| 88 |
-
implementation("org.springdoc:springdoc-openapi-webmvc-core")
|
| 89 |
-
implementation(group = "org.springdoc", name = "springdoc-openapi-ui", version = "1.6.11")
|
| 90 |
-
implementation("org.postgresql:postgresql")
|
| 91 |
-
|
| 92 |
-
implementation("com.h2database:h2")
|
| 93 |
-
testImplementation("com.h2database:h2")
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
// annotationProcessor("org.hibernate:hibernate-jpamodelgen:${hibernateVersion}.Final")
|
| 97 |
-
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
|
| 98 |
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
| 99 |
-
testImplementation("org.springframework.security:spring-security-test")
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
//
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
implementation(
|
| 113 |
-
implementation(
|
| 114 |
-
implementation(
|
| 115 |
-
implementation("
|
| 116 |
-
implementation("
|
| 117 |
-
implementation("
|
| 118 |
-
implementation("com.
|
| 119 |
-
// implementation("com.
|
| 120 |
-
|
| 121 |
-
implementation("
|
| 122 |
-
implementation("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
}
|
| 124 |
|
| 125 |
|
|
|
|
| 25 |
//val liquibaseH2db = file(".liquibase_h2_db")
|
| 26 |
|
| 27 |
dependencies {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
// implementation("org.springframework.boot:spring-boot-starter-security")
|
| 30 |
+
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
implementation("org.springframework.boot:spring-boot-starter-websocket")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
| 33 |
+
// testImplementation("org.springframework.security:spring-security-test")
|
| 34 |
+
|
| 35 |
+
// -----------------------------------------------------------------------------------------------------------------------------------------------
|
| 36 |
+
|
| 37 |
+
// implementation("io.grpc:grpc-netty:$grpcVersion")
|
| 38 |
+
// implementation("io.grpc:grpc-census:$grpcVersion")
|
| 39 |
+
// implementation("io.grpc:grpc-protobuf:$grpcVersion")
|
| 40 |
+
// implementation("io.grpc:grpc-stub:$grpcVersion")
|
| 41 |
+
//
|
| 42 |
+
//
|
| 43 |
+
// testImplementation("io.grpc:grpc-testing:$grpcVersion")
|
| 44 |
+
//
|
| 45 |
+
// implementation(platform("tech.jhipster:jhipster-dependencies:${jhipsterDependenciesVersion}"))
|
| 46 |
+
// implementation(group = "tech.jhipster", name = "jhipster-framework")
|
| 47 |
+
// implementation("javax.annotation:javax.annotation-api")
|
| 48 |
+
// implementation("io.dropwizard.metrics:metrics-core")
|
| 49 |
+
// implementation("io.micrometer:micrometer-registry-prometheus")
|
| 50 |
+
// implementation("com.fasterxml.jackson.datatype:jackson-datatype-hppc")
|
| 51 |
+
// implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
|
| 52 |
+
// implementation("com.fasterxml.jackson.module:jackson-module-jaxb-annotations")
|
| 53 |
+
// implementation("com.fasterxml.jackson.datatype:jackson-datatype-hibernate5")
|
| 54 |
+
// implementation("com.fasterxml.jackson.core:jackson-annotations")
|
| 55 |
+
// implementation("com.fasterxml.jackson.core:jackson-databind")
|
| 56 |
+
// implementation("org.hibernate:hibernate-core")
|
| 57 |
+
// implementation("com.zaxxer:HikariCP")
|
| 58 |
+
// implementation("org.apache.commons:commons-lang3")
|
| 59 |
+
// implementation("javax.transaction:javax.transaction-api")
|
| 60 |
+
// implementation("org.hibernate:hibernate-entitymanager")
|
| 61 |
+
// implementation("org.hibernate.validator:hibernate-validator")
|
| 62 |
+
//// implementation("org.liquibase:liquibase-core")
|
| 63 |
+
//
|
| 64 |
+
//// liquibaseRuntime("org.liquibase:liquibase-core")
|
| 65 |
+
//// liquibaseRuntime("org.liquibase.ext:liquibase-hibernate5:${liquibaseHibernate5Version}")
|
| 66 |
+
//// liquibaseRuntime("org.postgresql:postgresql:42.5.2")
|
| 67 |
+
////// liquibaseRuntime("info.picocli:picocli:4.7.0")
|
| 68 |
+
//// liquibaseRuntime(sourceSets.main.get().compileClasspath)
|
| 69 |
+
//
|
| 70 |
+
// implementation("org.springframework.boot:spring-boot-loader-tools")
|
| 71 |
+
//
|
| 72 |
+
// implementation("org.springframework.boot:spring-boot-starter-mail")
|
| 73 |
+
// implementation("org.springframework.boot:spring-boot-starter-logging")
|
| 74 |
+
// implementation("org.springframework.boot:spring-boot-starter-actuator")
|
| 75 |
+
// implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
| 76 |
+
// implementation("org.springframework.boot:spring-boot-starter-websocket")
|
| 77 |
+
// implementation("org.springframework.security:spring-security-messaging")
|
| 78 |
+
// testImplementation("org.testcontainers:postgresql")
|
| 79 |
+
// implementation("org.springframework.boot:spring-boot-starter-security")
|
| 80 |
+
// implementation("org.springframework.boot:spring-boot-starter-web") {
|
| 81 |
+
// exclude(module = "spring-boot-starter-tomcat")
|
| 82 |
+
// }
|
| 83 |
+
// implementation("org.springframework.boot:spring-boot-starter-undertow")
|
| 84 |
+
// implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
| 85 |
+
// implementation("org.zalando:problem-spring-web")
|
| 86 |
+
// implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
|
| 87 |
+
// implementation("org.springframework.security:spring-security-config")
|
| 88 |
+
// implementation("org.springframework.security:spring-security-data")
|
| 89 |
+
// implementation("org.springframework.security:spring-security-web")
|
| 90 |
+
// implementation("io.jsonwebtoken:jjwt-api")
|
| 91 |
+
// implementation(group = "tech.tablesaw", name = "tablesaw-core", version = "0.43.1")
|
| 92 |
+
// implementation(group = "tech.tablesaw", name = "tablesaw-json", version = "0.34.2")
|
| 93 |
+
// implementation(group = "org.apache.commons", name = "commons-compress", version = "1.21")
|
| 94 |
+
// runtimeOnly("io.jsonwebtoken:jjwt-impl")
|
| 95 |
+
// runtimeOnly("io.jsonwebtoken:jjwt-jackson")
|
| 96 |
+
//
|
| 97 |
+
// implementation("org.springdoc:springdoc-openapi-webmvc-core")
|
| 98 |
+
// implementation(group = "org.springdoc", name = "springdoc-openapi-ui", version = "1.6.11")
|
| 99 |
+
// implementation("org.postgresql:postgresql")
|
| 100 |
+
//
|
| 101 |
+
// implementation("com.h2database:h2")
|
| 102 |
+
// testImplementation("com.h2database:h2")
|
| 103 |
+
//
|
| 104 |
+
//
|
| 105 |
+
//// annotationProcessor("org.hibernate:hibernate-jpamodelgen:${hibernateVersion}.Final")
|
| 106 |
+
// annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}")
|
| 107 |
+
// testImplementation("org.springframework.boot:spring-boot-starter-test")
|
| 108 |
+
// testImplementation("org.springframework.security:spring-security-test")
|
| 109 |
+
// testImplementation("org.springframework.boot:spring-boot-test")
|
| 110 |
+
// testImplementation("com.tngtech.archunit:archunit-junit5-api:${archunitJunit5Version}")
|
| 111 |
+
// testRuntimeOnly("com.tngtech.archunit:archunit-junit5-engine:${archunitJunit5Version}")
|
| 112 |
+
// developmentOnly("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
|
| 113 |
+
//// protobuf(files("../common/proto"))
|
| 114 |
+
//
|
| 115 |
+
// compileOnly("org.projectlombok:lombok")
|
| 116 |
+
// annotationProcessor("org.projectlombok:lombok")
|
| 117 |
+
// // MapStruct
|
| 118 |
+
// compileOnly("org.mapstruct:mapstruct:${mapstructVersion}")
|
| 119 |
+
// annotationProcessor("org.mapstruct:mapstruct-processor:${mapstructVersion}")
|
| 120 |
+
//
|
| 121 |
+
// implementation(files("$projectDir/src/main/resources/third-party/j2ts-api.jar"))
|
| 122 |
+
// implementation(group = "com.fasterxml.jackson.dataformat", name = "jackson-dataformat-yaml", version = "2.14.2")
|
| 123 |
+
// implementation(group = "com.github.luben", name = "zstd-jni", version = "1.5.2-3")
|
| 124 |
+
// implementation("org.apache.commons:commons-compress:1.21")
|
| 125 |
+
// implementation("org.apache.commons:commons-csv:1.10.0")
|
| 126 |
+
// implementation("commons-codec:commons-codec:1.15")
|
| 127 |
+
// implementation("com.google.protobuf:protobuf-java-util:3.21.9")
|
| 128 |
+
//// implementation("com.github.blagerweij:liquibase-sessionlock:1.6.2")
|
| 129 |
+
//
|
| 130 |
+
// implementation("commons-fileupload:commons-fileupload:1.4")
|
| 131 |
+
// implementation("commons-io:commons-io:2.11.0")
|
| 132 |
}
|
| 133 |
|
| 134 |
|