27 lines
544 B
Groovy
27 lines
544 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '3.2.3'
|
|
id 'io.spring.dependency-management' version '1.1.4'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'de.oaa.linkster'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
sourceCompatibility = '17'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
bootBuildImage {
|
|
imageName = 'linkster-backend:latest'
|
|
}
|