Skip to content

Commit

Permalink
Update PDAL jni lib version (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin authored Mar 23, 2024
1 parent 1ebbdf8 commit 973e58a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/io/pdal/Pipeline.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Pipeline private (val json: String, val logLevel: Int) extends Native {
def getLogLevel(): LogLevel.Value = LogLevel.apply(getLogLevelInt())
}

object Pipeline extends NativeLoader("pdaljni.2.6") {
object Pipeline extends NativeLoader("pdaljni.2.7") {
def apply(json: String, logLevel: LogLevel.Value = LogLevel.Error): Pipeline =
new Pipeline(json, logLevel)
}
4 changes: 2 additions & 2 deletions examples/pdal-jni/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ resolvers ++= Resolver.sonatypeOssRepos("releases") ++ Resolver.sonatypeOssRepos

fork := true

val pdalVersion = "2.6.3"
val pdalVersion = "2.7.0"

libraryDependencies ++= Seq(
"io.pdal" %% "pdal" % pdalVersion,
"io.pdal" %% "pdal-scala" % pdalVersion,
"io.pdal" % "pdal-native" % pdalVersion,
"org.scalatest" %% "scalatest" % "3.2.17" % Test
"org.scalatest" %% "scalatest" % "3.2.18" % Test
)
2 changes: 1 addition & 1 deletion native/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set(MAKE_COLOR_MAKEFILE ON)

project (pdaljni)
set(PROJECT_VERSION_MAJOR 2)
set(PROJECT_VERSION_MINOR 6)
set(PROJECT_VERSION_MINOR 7)
set(PROJECT_VERSION_PATCH 0)

set(PDAL_LIB_NAME pdalcpp)
Expand Down

0 comments on commit 973e58a

Please sign in to comment.