Implement user service and controller with CRUD functions
[alyverkko.git] / build.gradle
1 plugins {
2         id 'java'
3         id 'org.springframework.boot' version '3.2.5'
4         id 'io.spring.dependency-management' version '1.1.4'
5 }
6
7 group = 'eu.svjatoslav'
8 version = '0.0.1-SNAPSHOT'
9
10 java {
11         sourceCompatibility = '17'
12 }
13
14 configurations {
15         compileOnly {
16                 extendsFrom annotationProcessor
17         }
18 }
19
20 repositories {
21         mavenCentral()
22 }
23
24 dependencies {
25         implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
26         implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
27         implementation 'org.springframework.boot:spring-boot-starter-web'
28         compileOnly 'org.projectlombok:lombok'
29         runtimeOnly 'org.postgresql:postgresql'
30         annotationProcessor 'org.projectlombok:lombok'
31         testImplementation 'org.springframework.boot:spring-boot-starter-test'
32 }
33
34 tasks.named('test') {
35         useJUnitPlatform()
36 }