updated gradle dependencies

This commit is contained in:
Andrey Terentev 2024-05-10 22:14:35 +07:00 committed by Andrey Terentev
parent b4b0cf2a64
commit 8767654f12
3 changed files with 9 additions and 10 deletions

View File

@ -1,5 +1,6 @@
plugins { plugins {
id 'java' id 'java'
id 'java-library'
} }
repositories { repositories {
@ -7,8 +8,7 @@ repositories {
} }
dependencies { dependencies {
implementation 'io.swagger.core.v3:swagger-annotations:2.2.20' api 'org.jetbrains:annotations:24.1.0'
implementation 'org.jetbrains:annotations:24.1.0'
testImplementation platform('org.junit:junit-bom:5.9.1') testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.junit.jupiter:junit-jupiter'

View File

@ -1,5 +1,6 @@
plugins { plugins {
id 'java' id 'java'
id 'java-library'
} }
group = 'ru.dragonestia' group = 'ru.dragonestia'
@ -10,11 +11,10 @@ repositories {
} }
dependencies { dependencies {
implementation project(':client-api') api project(':client-api')
implementation 'org.jetbrains:annotations:24.1.0' api 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'com.squareup.okhttp3:okhttp:4.12.0' api 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3' api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
testImplementation platform('org.junit:junit-bom:5.9.1') testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.junit.jupiter:junit-jupiter'

View File

@ -27,15 +27,14 @@ vaadin {
} }
dependencies { dependencies {
implementation project(":client-api")
implementation project(":client-impl") implementation project(":client-impl")
implementation 'com.vaadin:vaadin-spring-boot-starter' implementation 'com.vaadin:vaadin-spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.jetbrains:annotations:24.1.0'
compileOnly 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.boot:spring-boot-starter-test'
} }