Files
Layer3Gen/demo/build.gradle
2023-02-26 16:26:41 +01:00

41 lines
1.0 KiB
Groovy

buildscript {
dependencies {
classpath "gae.piaz:layer3gen:1.9"
}
repositories {
mavenCentral()
}
}
plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
repositories {
mavenCentral()
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.mapstruct:mapstruct:1.5.3.Final'
compileOnly 'org.projectlombok:lombok:1.18.26'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
annotationProcessor "org.mapstruct:mapstruct-processor:1.5.3.Final"
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
apply plugin: 'gae.piaz.layer3gen'