mirror of
https://github.com/bvanroll/stage-frontend.git
synced 2025-08-29 12:02:39 +00:00
21 lines
422 B
Groovy
21 lines
422 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.1.13.RELEASE'
|
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.frontend.stage'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
|