Spaces:
Sleeping
Sleeping
File size: 1,797 Bytes
8d4dde5 c148a1c 8d4dde5 8c86632 8d4dde5 8c86632 8bf40fb 9353ba8 8d4dde5 9353ba8 0801868 9353ba8 40497bc 0801868 653ce18 3c84237 0fe5d26 b5acd85 330935a 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 |
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("org.springframework.boot:spring-boot-starter-actuator")
implementation("javax.annotation:javax.annotation-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-websocket")
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")
}
tasks.withType<Test> {
useJUnitPlatform()
}
|