OSDN Git Service

CORS設定追加
[ngware/todo_java.git] / build.gradle
1 plugins {
2         id 'org.springframework.boot' version '2.4.5'
3         id 'io.spring.dependency-management' version '1.0.11.RELEASE'
4         id 'java'
5 }
6
7 group = 'jp.co.example'
8 version = '0.0.1-SNAPSHOT'
9 sourceCompatibility = '1.8'
10
11 repositories {
12         mavenCentral()
13 }
14
15 dependencies {
16         implementation 'org.springframework.boot:spring-boot-starter'
17         runtimeOnly 'com.h2database:h2'
18         runtimeOnly 'org.postgresql:postgresql'
19         testImplementation 'org.springframework.boot:spring-boot-starter-test'
20         implementation group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '2.1.4'
21         implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.4.5'
22         implementation group: 'com.google.guava', name: 'guava', version: '30.1.1-jre'
23         compileOnly 'org.projectlombok:lombok:1.18.20'
24         implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
25         developmentOnly 'org.springframework.boot:spring-boot-devtools' // hotdeploy
26 }
27
28 test {
29         useJUnitPlatform()
30 }