mirror of
https://github.com/OkaeriPoland/okaeri-timings.git
synced 2026-01-18 03:28:20 +01:00
40 lines
689 B
Groovy
40 lines
689 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.6.1'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
allprojects {
|
|
|
|
group = 'eu.okaeri.timings'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
apply plugin: 'org.springframework.boot'
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = '17'
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
bootJar {
|
|
enabled = false
|
|
}
|