| 123456789101112131415161718192021222324252627282930313233 |
- buildscript {
- ext {
- springBootVersion = '2.0.4.RELEASE'
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
- }
- }
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'org.springframework.boot'
- apply plugin: 'io.spring.dependency-management'
- group = 'usuario-api'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = 1.8
- repositories {
- mavenCentral()
- }
- dependencies {
- compile('org.springframework.boot:spring-boot-starter')
- compile('org.springframework.boot:spring-boot-starter-data-jpa')
- compile("org.springframework.boot:spring-boot-starter-web")
- testCompile('org.springframework.boot:spring-boot-starter-test')
- }
|