We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now the build.sbt file has a not fully correct assembly strategy, it should be replaced by
assemblyMergeStrategy in assembly := { case "reference.conf" => MergeStrategy.concat case "application.conf" => MergeStrategy.concat case PathList("META-INF", xs @ _*) => xs match { case ("MANIFEST.MF" :: Nil) => MergeStrategy.discard case ("services" :: _ :: Nil) => MergeStrategy.concat case ("javax.media.jai.registryFile.jai" :: Nil) | ("registryFile.jai" :: Nil) | ("registryFile.jaiext" :: Nil) => MergeStrategy.concat case (name :: Nil) if name.endsWith(".RSA") || name.endsWith(".DSA") || name.endsWith(".SF") => MergeStrategy.discard case _ => MergeStrategy.first } case _ => MergeStrategy.first }
Since the current version can confuse users, and doesn't take into account GeoTrellis SPI merge.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Right now the build.sbt file has a not fully correct assembly strategy, it should be replaced by
Since the current version can confuse users, and doesn't take into account GeoTrellis SPI merge.
The text was updated successfully, but these errors were encountered: