-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
82 lines (70 loc) · 2.73 KB
/
build.gradle.kts
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
import com.github.gradle.node.npm.task.NpmTask
plugins {
java
id("org.springframework.boot") version "3.3.1"
id("io.spring.dependency-management") version "1.1.5"
id("com.github.node-gradle.node") version "7.0.2"
}
group = "ram0973"
version = "0.0.1-SNAPSHOT"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom(configurations.annotationProcessor.get())
}
}
node {
download.set(false)
//workDir.set(file("${project.projectDir}/.cache/nodejs"))
//npmWorkDir.set(file("${project.projectDir}/.cache/npm"))
nodeProjectDir.set(file("${project.projectDir}/src/main/react"))
}
val buildWebApp = tasks.register<NpmTask>("buildWebapp") {
args.set(listOf("" +
"run", "build-dev"))
dependsOn(tasks.npmInstall)
inputs.dir("src/main/react")
inputs.dir("src/main/react/node_modules")
inputs.files("src/main/react/package.json", "src/main/react/package-lock.json",
"src/main/react/tsconfig.json", "src/main/react/tsconfig.node.json")
//outputs.dir("build/resources/main/static")
copy {
from("src/main/react/dist/.")
into("build/resources/main/static")
}
}
tasks.withType<ProcessResources> {
dependsOn(buildWebApp)
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-validation")
//implementation("org.springframework.boot:spring-boot-starter-data-redis")
//implementation("org.springframework.session:spring-session-core")
//implementation("org.springframework.session:spring-session-data-redis")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.mapstruct:mapstruct:1.5.5.Final")
implementation("org.apache.commons:commons-lang3:3.15.0")
implementation("org.springframework.boot:spring-boot-starter-actuator")
runtimeOnly("org.postgresql:postgresql")
compileOnly("org.projectlombok:lombok")
developmentOnly("org.springframework.boot:spring-boot-devtools")
developmentOnly("org.springframework.boot:spring-boot-docker-compose")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
annotationProcessor("org.projectlombok:lombok")
annotationProcessor("org.mapstruct:mapstruct-processor:1.5.5.Final")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.withType<Test> {
useJUnitPlatform()
}