build.gradle 558 B

1234567891011121314151617181920212223
  1. plugins {
  2. id 'org.springframework.boot' version '2.1.7.RELEASE'
  3. id 'java'
  4. }
  5. apply plugin: 'io.spring.dependency-management'
  6. group = 'com.example'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '1.8'
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation 'org.threeten:threetenbp:1.4.0'
  14. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  15. implementation 'org.springframework.boot:spring-boot-starter-web'
  16. runtimeOnly 'mysql:mysql-connector-java'
  17. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  18. }