| | plugins { |
---|
| | id 'org.springframework.boot' version '2.1.4.RELEASE' |
---|
| | id 'java' |
---|
| | id 'war' |
---|
| | } |
---|
| | |
---|
| | apply plugin: 'io.spring.dependency-management' |
---|
| | |
---|
| | group = 'com.example' |
---|
| | version = '0.0.1-SNAPSHOT' |
---|
| | sourceCompatibility = '1.8' |
---|
| | |
---|
| | repositories { |
---|
| | mavenCentral() |
---|
| | } |
---|
| | |
---|
| | dependencies { |
---|
| | implementation 'org.springframework.boot:spring-boot-starter-data-jpa' |
---|
| | implementation 'org.springframework.boot:spring-boot-starter-jersey' |
---|
| | implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' |
---|
| | implementation 'org.springframework.boot:spring-boot-starter-validation' |
---|
| | implementation 'org.springframework.boot:spring-boot-starter-web' |
---|
| | runtimeOnly 'com.h2database:h2' |
---|
| | runtimeOnly 'mysql:mysql-connector-java' |
---|
| | providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' |
---|
| | testImplementation 'org.springframework.boot:spring-boot-starter-test' |
---|
| | } |
---|
| | |
---|
| | |