Files
Layer3Gen/build.gradle
Gaetano Piazzolla 90723ed62b starting impl
2020-10-26 19:16:30 +01:00

37 lines
971 B
Groovy

plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'io.freefair.lombok' version "4.1.6" //questo
id 'java'
}
group = 'com.gae.piaz'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' // questo
implementation 'org.springframework.boot:spring-boot-starter-web' // questo
implementation 'org.mapstruct:mapstruct:1.3.1.Final' // questo
compileOnly 'org.projectlombok:lombok:1.18.2' // questo
annotationProcessor "org.mapstruct:mapstruct-processor:1.3.1.Final"
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}