1234567891011121314151617181920212223242526272829303132333435363738 |
- buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.21.RELEASE'
- }
- }
- plugins {
- id 'java'
- }
- apply plugin: 'org.springframework.boot'
- group = 'com.example'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- configurations {
- developmentOnly
- runtimeClasspath {
- extendsFrom developmentOnly
- }
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- compile 'org.springframework.boot:spring-boot-starter-web'
- compile group: 'org.springframework.retry', name: 'spring-retry', version: '1.2.4.RELEASE'
- compile group: 'org.springframework', name: 'spring-aspects', version: '4.3.24.RELEASE'
- developmentOnly 'org.springframework.boot:spring-boot-devtools'
- testCompile 'org.springframework.boot:spring-boot-starter-test'
- }
|