Skip to content

Commit

Permalink
Merge pull request #8 from prdoyle/bump-deps
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
prdoyle authored Jul 24, 2024
2 parents 5088060 + fcdf7eb commit 66c7baa
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion bosk-annotations/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

plugins {
id 'bosk.development'
id 'bosk.maven-publish'
id 'com.github.spotbugs' version '5.1.5'
}
Expand Down
6 changes: 3 additions & 3 deletions bosk-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ java {

dependencies {
api project(":bosk-annotations")
implementation group: 'org.ow2.asm', name: 'asm', version: '9.6'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.6'
implementation 'org.pcollections:pcollections:4.0.1'
implementation group: 'org.ow2.asm', name: 'asm', version: '9.7'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.7'
implementation 'org.pcollections:pcollections:4.0.2'
implementation 'org.jetbrains:annotations:24.1.0'
testImplementation project(':bosk-testing')
testImplementation project(':lib-testing')
Expand Down
2 changes: 1 addition & 1 deletion bosk-jackson/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ java {
}

dependencies {
api 'com.fasterxml.jackson.core:jackson-databind:2.16.1'
api 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
api project(":bosk-core")

testImplementation project(":bosk-testing")
Expand Down
2 changes: 1 addition & 1 deletion bosk-mongo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
api 'org.mongodb:mongodb-driver-sync:4.1.2'

// Allows us to annotate status objects so they're handy to serialize with jackson
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.16.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.17.2'

testImplementation project(":bosk-logback")
testImplementation project(":bosk-testing")
Expand Down
4 changes: 2 additions & 2 deletions bosk-spring-boot-3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ java {

dependencies {
api project(":bosk-jackson")
implementation 'org.springframework.boot:spring-boot-starter-web:3.2.1'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:3.2.1"
implementation 'org.springframework.boot:spring-boot-starter-web:3.3.2'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:3.3.2"
testImplementation project(":bosk-testing")
testImplementation project(":lib-testing")
}
Expand Down
14 changes: 7 additions & 7 deletions buildSrc/src/main/groovy/bosk.development.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,18 @@ dependencies {

// Developer aids
dependencies {
annotationProcessor "org.projectlombok:lombok:1.18.30"
compileOnly "org.projectlombok:lombok:1.18.30"
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
testCompileOnly "org.projectlombok:lombok:1.18.30"
annotationProcessor "org.projectlombok:lombok:1.18.34"
compileOnly "org.projectlombok:lombok:1.18.34"
testAnnotationProcessor "org.projectlombok:lombok:1.18.34"
testCompileOnly "org.projectlombok:lombok:1.18.34"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"

testImplementation "org.testcontainers:testcontainers:1.19.3"
testImplementation "org.testcontainers:junit-jupiter:1.19.3"
testImplementation "org.testcontainers:toxiproxy:1.19.3"
testImplementation "org.testcontainers:testcontainers:1.20.0"
testImplementation "org.testcontainers:junit-jupiter:1.20.0"
testImplementation "org.testcontainers:toxiproxy:1.20.0"

testImplementation "org.hamcrest:hamcrest:2.2"
testImplementation "org.hamcrest:hamcrest-library:2.2"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/bosk.maven-publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ publishing {
developer {
id = 'gjohnson'
name = 'Grady Johnson'
email = 'gjohnson@venacorp.com'
email = 'gradycsjohnson@gmail.com'
}
}
scm {
Expand Down

0 comments on commit 66c7baa

Please sign in to comment.