forked from codesquad-members-2023/be-java-cafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (25 loc) · 869 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.9'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'kr.codesqaud'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'junit:junit:4.13.1'
// 데이터 베이스 주입
// implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.28'
implementation 'mysql:mysql-connector-java:8.0.28'
}
tasks.named('test') {
useJUnitPlatform()
}