| | buildscript { |
---|
| | ext { |
---|
| | springBootVersion = '2.1.0.RELEASE' |
---|
| | } |
---|
| | repositories { |
---|
| | mavenCentral() |
---|
| | } |
---|
| | dependencies { |
---|
| | classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") |
---|
| | classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.0.RELEASE") |
---|
| | } |
---|
| | } |
---|
| | |
---|
| | plugins { |
---|
| | id 'java' |
---|
| | id 'org.springframework.boot' version '2.1.0.RELEASE' |
---|
| | id 'io.spring.dependency-management' version '1.0.8.RELEASE' |
---|
| | id 'com.github.johnrengelman.shadow' version '5.0.0' |
---|
| | } |
---|
| | |
---|
| | group = 'com.sample' |
---|
| | version = '0.0.1-SNAPSHOT' |
---|
| |
---|