Skip to content

Commit c370fe9

Browse files
authored
Merge pull request #5 from getyourguide/gradle-format
[NO_TICKET] Change gradle format to Groovy
2 parents 5155fd7 + f5a692f commit c370fe9

File tree

4 files changed

+42
-42
lines changed

4 files changed

+42
-42
lines changed

build.gradle

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
}

build.gradle.kts

Lines changed: 0 additions & 41 deletions
This file was deleted.

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'interview'

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)