Fix build.gradle
1 parent 0dd1f46 commit 7f86396b5e222d5505a164ab11d8fe422706136c
yhornisse authored on 8 May 2020
Showing 1 changed file
View
6
build.gradle
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'