-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
31 lines (26 loc) · 880 Bytes
/
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
plugins {
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}
group = 'app.example.weather'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 17
targetCompatibility = 17
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
maven { url = "https://jitpack.io" }
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.raynigon.unit-api:spring-boot-jackson-starter:3.0.5")
implementation("com.raynigon.unit-api:unit-api-core:3.0.7")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
}
test {
useJUnitPlatform()
}