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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ dependencies {
runtimeOnly project(':methodatlas-discovery-cobol')
runtimeOnly project(':methodatlas-detect-secrets') // Built-in credential detector — discovered at runtime via ServiceLoader

implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'
implementation 'tools.jackson.dataformat:jackson-dataformat-yaml:3.1.4'

// ZeroEcho-lib (Egothor) — in-house cryptographic toolkit used by the
Expand Down
2 changes: 1 addition & 1 deletion methodatlas-ai/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
api project(':methodatlas-api')

// Jackson for JSON request / response handling against AI providers
implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'

testImplementation(platform("org.junit:junit-bom:5.14.2"))
testImplementation 'org.junit.jupiter:junit-jupiter'
Expand Down
2 changes: 1 addition & 1 deletion methodatlas-discovery-python/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ configurations {
dependencies {
api project(':methodatlas-api')
implementation project(':methodatlas-util')
implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'

testImplementation(platform("org.junit:junit-bom:5.14.2"))
testImplementation 'org.junit.jupiter:junit-jupiter'
Expand Down
2 changes: 1 addition & 1 deletion methodatlas-discovery-typescript/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ configurations {
dependencies {
api project(':methodatlas-api')
implementation project(':methodatlas-util')
implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'

testImplementation(platform("org.junit:junit-bom:5.14.2"))
testImplementation 'org.junit.jupiter:junit-jupiter'
Expand Down
2 changes: 1 addition & 1 deletion methodatlas-emit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':methodatlas-ai')

// Jackson for SARIF / JSON output serialisation
implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'
implementation 'tools.jackson.dataformat:jackson-dataformat-yaml:3.1.4'

testImplementation(platform("org.junit:junit-bom:5.14.2"))
Expand Down
2 changes: 1 addition & 1 deletion methodatlas-gui-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
api project(':methodatlas-emit')

// YAML for AuditWriter's overrides.yaml output
implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'
implementation 'tools.jackson.dataformat:jackson-dataformat-yaml:3.1.4'

testImplementation(platform("org.junit:junit-bom:5.14.2"))
Expand Down
2 changes: 1 addition & 1 deletion methodatlas-gui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
implementation 'com.fifesoft:rsyntaxtextarea:3.4.0'

// Jackson — settings serialisation and YAML audit output
implementation 'tools.jackson.core:jackson-databind:3.1.4'
implementation 'tools.jackson.core:jackson-databind:3.1.5'
implementation 'tools.jackson.dataformat:jackson-dataformat-yaml:3.1.4'

// Unit tests for non-UI GUI helpers (SourceWriteBackSupport et al.)
Expand Down
Loading