Skip to content

Commit

Permalink
Apply dependency overrides to all dependency types
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Kurait <[email protected]>
  • Loading branch information
AndreKurait committed Oct 1, 2024
1 parent f28e131 commit af95b99
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 8 deletions.
1 change: 1 addition & 0 deletions CreateSnapshot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ java.targetCompatibility = JavaVersion.VERSION_11

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':coreUtilities')
implementation project(":RFS")
Expand Down
2 changes: 2 additions & 0 deletions DocumentsFromSnapshotMigration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class DockerServiceProps {

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation platform('io.projectreactor:reactor-bom:2023.0.5')
testImplementation platform('io.projectreactor:reactor-bom:2023.0.5')

Expand Down
1 change: 1 addition & 0 deletions MetadataMigration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ java.targetCompatibility = JavaVersion.VERSION_11

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(":coreUtilities")
implementation project(":RFS")
Expand Down
1 change: 1 addition & 0 deletions RFS/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ ext {

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")
implementation project(':awsUtilities')
implementation project(':coreUtilities')
implementation project(':transformation')
Expand Down
4 changes: 3 additions & 1 deletion TrafficCapture/captureKafkaOffloader/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ plugins {
}

dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':TrafficCapture:captureOffloader')
implementation project(':coreUtilities')
implementation group: 'com.google.protobuf', name:'protobuf-java'
Expand Down
4 changes: 3 additions & 1 deletion TrafficCapture/captureOffloader/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ sourceSets {
}
}
dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

api group: 'io.netty', name: 'netty-buffer'

implementation project(':TrafficCapture:captureProtobufs')
Expand Down
3 changes: 2 additions & 1 deletion TrafficCapture/nettyWireLogging/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ plugins {
}

dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':TrafficCapture:captureOffloader')
implementation project(':coreUtilities')
Expand Down
1 change: 1 addition & 0 deletions TrafficCapture/trafficCaptureProxyServer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ configurations {

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

def openSearch = '2.11.1'
implementation "org.opensearch.plugin:opensearch-security:${openSearch}.0"
Expand Down
3 changes: 2 additions & 1 deletion TrafficCapture/trafficCaptureProxyServerTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def calculateDockerHash = { projectName ->
}

dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':TrafficCapture:trafficCaptureProxyServer')
compileOnly 'org.projectlombok:lombok:1.18.28'
Expand Down
1 change: 1 addition & 0 deletions TrafficCapture/trafficReplayer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ plugins {

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':TrafficCapture:captureProtobufs')
implementation project(':coreUtilities')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ plugins {

dependencies {
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':TrafficCapture:transformationPlugins:jsonMessageTransformers:jsonMessageTransformerInterface')

implementation group: 'com.bazaarvoice.jolt', name: 'jolt-core'
Expand Down
3 changes: 2 additions & 1 deletion awsUtilities/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation group: 'software.amazon.awssdk', name: 'arns'
implementation group: 'software.amazon.awssdk', name: 'auth'
Expand Down
4 changes: 3 additions & 1 deletion coreUtilities/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
testFixturesImplementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation group: "com.google.protobuf", name: "protobuf-java"
implementation group: 'org.slf4j', name: 'slf4j-api'
Expand Down
1 change: 1 addition & 0 deletions dashboardsSanitizer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ repositories {
dependencies {

implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation project(':coreUtilities')
implementation project(":RFS")
Expand Down
4 changes: 3 additions & 1 deletion testHelperFixtures/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ plugins {
}

dependencies {
api project(":commonDependencyVersionConstraints")
testImplementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")
testFixturesImplementation project(":commonDependencyVersionConstraints")

testFixturesImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
testFixturesImplementation group: 'com.google.guava', name: 'guava'
Expand Down
3 changes: 2 additions & 1 deletion transformation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

dependencies {
api project(":commonDependencyVersionConstraints")
implementation project(":commonDependencyVersionConstraints")
annotationProcessor project(":commonDependencyVersionConstraints")

implementation group: 'org.slf4j', name: 'slf4j-api'

Expand Down

0 comments on commit af95b99

Please sign in to comment.