Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ dependencies {
implementation 'com.apptasticsoftware:rssreader:3.9.3'

testImplementation 'org.mockito:mockito-core:5.18.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.13.2'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.2'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"

implementation "com.theokanning.openai-gpt3-java:api:$chatGPTVersion"
implementation "com.theokanning.openai-gpt3-java:service:$chatGPTVersion"
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ext {
jooqVersion = '3.20.5'
jacksonVersion = '2.19.1'
chatGPTVersion = '0.18.2'
junitVersion = '5.13.2'
}

// Skips sonarlint during the build, useful for testing purposes.
Expand Down
7 changes: 4 additions & 3 deletions formatter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ dependencies {
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation project(':utils')

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
}

Loading