1234567891011121314151617181920212223 |
- plugins {
- id 'org.springframework.boot' version '2.1.7.RELEASE'
- id 'java'
- }
- apply plugin: 'io.spring.dependency-management'
- group = 'com.example'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.threeten:threetenbp:1.4.0'
- implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- runtimeOnly 'mysql:mysql-connector-java'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
|