-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
59 lines (51 loc) · 1.59 KB
/
build.gradle
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
plugins {
id 'org.springframework.boot' version '2.6.7'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'idea'
id "com.github.node-gradle.node" version "3.2.1"
}
apply plugin: 'io.spring.dependency-management'
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.openliberty.features:beanValidation-2.0:22.0.0.3'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
}
//node {
// version = '16.14.2'
//}
tasks.named('test') {
useJUnitPlatform()
}
//task buildReactApp(type: NodeTask, dependsOn: 'npmInstall') {
// script = project.file('./flint/node_modules/webpack/bin/webpack.js')
// args = [
// '--mode', 'development',
// '--entry', './flint/src/index.js',
// '-o', './src/main/resources/static/dist'
// ]
//}
//
//processResources.dependsOn 'buildReactApp'
//clean.delete << file('node_modules')
//clean.delete << file('src/main/resources/static/dist')