MaxNevermind commented on code in PR #7694:
URL: https://github.com/apache/iceberg/pull/7694#discussion_r1262075538
##########
spark/v3.1/build.gradle:
##########
@@ -17,24 +17,20 @@
* under the License.
*/
+String scalaVersion = System.getProperty("scalaVersion") != null ?
System.getProperty("scalaVersion") : System.getProperty("defaultScalaVersion")
+
def sparkProjects = [
project(':iceberg-spark:iceberg-spark-3.1_2.12'),
project(":iceberg-spark:iceberg-spark-extensions-3.1_2.12"),
project(':iceberg-spark:iceberg-spark-runtime-3.1_2.12')
]
configure(sparkProjects) {
- project.ext {
- sparkVersion = '3.1.3'
- }
configurations {
all {
resolutionStrategy {
- force 'com.fasterxml.jackson.module:jackson-module-scala_2.12:2.11.4'
- force 'com.fasterxml.jackson.module:jackson-module-paranamer:2.11.4'
- force 'com.fasterxml.jackson.core:jackson-core:2.11.4'
- force 'com.fasterxml.jackson.core:jackson-databind:2.11.4'
+ force
"com.fasterxml.jackson.module:jackson-module-scala_${scalaVersion}:${libs.versions.jackson211.get()}"
Review Comment:
PR was opened for so long that I forgot the reason why I did that in the
first place, I reverted it back
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]