Created
November 5, 2019 09:36
-
-
Save SAMMY7th/e6f690a562e8e07b756f5158801c1b7f to your computer and use it in GitHub Desktop.
Spring-boot 2.1.9 build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'org.springframework.boot' version '2.1.9.RELEASE' | |
id 'io.spring.dependency-management' version '1.0.8.RELEASE' | |
id 'java' | |
} | |
group = 'com.example' | |
version = '0.0.1-SNAPSHOT' | |
sourceCompatibility = '11' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' | |
implementation 'org.springframework.boot:spring-boot-starter-web' | |
testImplementation 'org.springframework.boot:spring-boot-starter-test' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment