| 12345678910111213141516171819202122232425262728293031323334 |
- buildscript {
- ext {
- springBootVersion = '2.0.0.RELEASE'
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
- }
- }
- apply plugin: 'java'
- apply plugin: 'org.springframework.boot'
- apply plugin: 'io.spring.dependency-management'
- group = 'com.uas.mobile'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = 1.8
- repositories {
- jcenter()
- mavenCentral()
- }
- dependencies {
- compile project(':fitness-barn-service')
- compile('org.springframework.boot:spring-boot-starter-actuator')
- compile('org.springframework.boot:spring-boot-starter-data-jpa')
- compile('org.springframework.boot:spring-boot-starter-web')
- compile('org.springframework.boot:spring-boot-starter-logging')
- runtime('mysql:mysql-connector-java')
- testCompile('org.springframework.boot:spring-boot-starter-test')
- }
|