Guest User

Untitled

a guest
May 28th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. compileOnly "org.apache.spark:spark-core_2.11:2.2.0.2.6.4.9-3"
  2. compileOnly "org.apache.spark:spark-sql_2.11:2.2.0.2.6.4.9-3"
  3. compileOnly "org.scala-lang:scala-library:2.11.12"
  4. compile "org.locationtech.geomesa:geomesa-spark-sql_2.11:2.0.1"
  5.  
  6. gradle dependencyInsight --dependency xerces
  7.  
  8. > Task :dependencyInsight
  9. xerces:xercesImpl:2.9.1 (conflict resolution)
  10. variant "runtime" [
  11. Requested attributes not found in the selected variant:
  12. org.gradle.usage = java-api
  13. ]
  14. --- org.apache.hadoop:hadoop-hdfs:2.7.3.2.6.4.9-3
  15. --- org.apache.hadoop:hadoop-client:2.7.3.2.6.4.9-3
  16. --- org.apache.spark:spark-core_2.11:2.2.0.2.6.4.9-3
  17. +--- compileClasspath
  18. +--- org.apache.spark:spark-sql_2.11:2.2.0.2.6.4.9-3
  19. | --- compileClasspath
  20. --- org.apache.spark:spark-catalyst_2.11:2.2.0.2.6.4.9-3
  21. --- org.apache.spark:spark-sql_2.11:2.2.0.2.6.4.9-3 (*)
  22.  
  23. xerces:xercesImpl:2.4.0 -> 2.9.1
  24. variant "runtime" [
  25. Requested attributes not found in the selected variant:
  26. org.gradle.usage = java-api
  27. ]
  28. --- com.vividsolutions:jts:1.12
  29. --- org.jaitools:jt-utils:1.4.0
  30. +--- org.geotools:gt-coverage:18.0
  31. | --- org.geotools:gt-process:18.0
  32. | --- org.geotools:gt-process-feature:18.0
  33. | +--- org.locationtech.geomesa:geomesa-feature-kryo_2.11:2.0.1
  34. | | --- org.locationtech.geomesa:geomesa-feature-all_2.11:2.0.1
  35. | | --- org.locationtech.geomesa:geomesa-spark-core_2.11:2.0.1
  36. | | --- org.locationtech.geomesa:geomesa-spark-sql_2.11:2.0.1
  37. | | --- compileClasspath
  38. | --- org.locationtech.geomesa:geomesa-feature-common_2.11:2.0.1
  39. | +--- org.locationtech.geomesa:geomesa-cqengine-datastore_2.11:2.0.1
  40. | | --- org.locationtech.geomesa:geomesa-spark-sql_2.11:2.0.1 (*)
  41. | +--- org.locationtech.geomesa:geomesa-feature-all_2.11:2.0.1 (*)
  42. | +--- org.locationtech.geomesa:geomesa-feature-kryo_2.11:2.0.1 (*)
  43. | --- org.locationtech.geomesa:geomesa-feature-avro_2.11:2.0.1
  44. | --- org.locationtech.geomesa:geomesa-feature-all_2.11:2.0.1 (*)
  45. --- org.jaitools:jt-zonalstats:1.4.0
  46. --- org.geotools:gt-coverage:18.0 (*)
  47.  
  48. (*) - dependencies omitted (listed previously)
  49.  
  50. A web-based, searchable dependency report is available by adding the --scan option.
  51.  
  52. BUILD SUCCESSFUL in 0s
  53. 1 actionable task: 1 executed
  54.  
  55. compile("org.locationtech.geomesa:geomesa-spark-sql_2.11:2.0.1") {
  56. exclude group: 'xerces', module: 'xercesImpl'
  57. }
  58.  
  59. configurations.all {
  60. resolutionStrategy.failOnVersionConflict()
  61. }
  62. constraints {
  63. implementation('org.scala-lang:scala-library:2.11.12') {
  64. because 'dependency conflict'
  65. }
  66. }
  67.  
  68. > A conflict was found between the following modules:
  69. - org.scala-lang:scala-library:2.11.7
  70. - org.scala-lang:scala-library:2.11.12
Add Comment
Please, Sign In to add comment