File tree Expand file tree Collapse file tree 4 files changed +42
-42
lines changed Expand file tree Collapse file tree 4 files changed +42
-42
lines changed Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' java'
3
+ id ' org.springframework.boot' version ' 3.4.1'
4
+ id ' io.spring.dependency-management' version ' 1.1.7'
5
+ }
6
+
7
+ group = ' com.getourguide'
8
+ version = ' 0.0.1-SNAPSHOT'
9
+
10
+ java {
11
+ toolchain {
12
+ languageVersion = JavaLanguageVersion . of(21 )
13
+ }
14
+ }
15
+
16
+ configurations {
17
+ compileOnly {
18
+ extendsFrom annotationProcessor
19
+ }
20
+ }
21
+
22
+ repositories {
23
+ mavenCentral()
24
+ }
25
+
26
+ dependencies {
27
+ implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
28
+ implementation ' org.springframework.boot:spring-boot-starter-thymeleaf'
29
+ implementation ' org.springframework.boot:spring-boot-starter-web'
30
+ implementation ' org.flywaydb:flyway-core'
31
+ compileOnly ' org.projectlombok:lombok'
32
+ developmentOnly ' org.springframework.boot:spring-boot-devtools'
33
+ runtimeOnly ' com.h2database:h2'
34
+ annotationProcessor ' org.projectlombok:lombok'
35
+ testImplementation ' org.springframework.boot:spring-boot-starter-test'
36
+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
37
+ }
38
+
39
+ test {
40
+ useJUnitPlatform()
41
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ rootProject. name = ' interview'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments