mirror of
https://github.com/OkaeriPoland/okaeri-timings.git
synced 2026-01-20 10:14:18 +01:00
Create backend skeleton
This commit is contained in:
34
backend/build.gradle
Normal file
34
backend/build.gradle
Normal file
@@ -0,0 +1,34 @@
|
||||
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'
|
||||
}
|
||||
|
||||
subprojects {
|
||||
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
apply plugin: 'org.springframework.boot'
|
||||
apply plugin: 'java'
|
||||
|
||||
sourceCompatibility = '17'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'org.projectlombok:lombok'
|
||||
annotationProcessor 'org.projectlombok:lombok'
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
compileOnly {
|
||||
extendsFrom annotationProcessor
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user