Skip to content

Commit

Permalink
make spark deps compileOnly (#1024)
Browse files Browse the repository at this point in the history
This should avoid changing the spark version used if
someone is pulling this in with maven or gradle.
  • Loading branch information
brharrington authored Jan 9, 2023
1 parent b6576fd commit 47860c4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions spectator-ext-spark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ dependencies {
implementation project(':spectator-ext-jvm')
implementation project(':spectator-reg-sidecar')
implementation "com.typesafe:config"
implementation 'io.dropwizard.metrics:metrics-core:3.1.5'
implementation 'org.apache.spark:spark-core_2.11:2.4.4'
compileOnly 'io.dropwizard.metrics:metrics-core:3.1.5'
compileOnly 'org.apache.spark:spark-core_2.11:2.4.4'
testImplementation 'io.dropwizard.metrics:metrics-core:3.1.5'
testImplementation 'org.apache.spark:spark-core_2.11:2.4.4'
}

jar {
Expand Down

0 comments on commit 47860c4

Please sign in to comment.