Skip to content

Commit d6de66c

Browse files
committed
Update actions.yml
1 parent cd6ea41 commit d6de66c

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest]
15-
scala: [2.13.4, 2.12.12]
15+
scala: [2.13.6, 2.12.14]
1616

1717
container:
1818
image: daunnc/pdal-ubuntu:2.2.0
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
matrix:
5858
os: [macos-latest]
59-
scala: [2.13.4, 2.12.12]
59+
scala: [2.13.6, 2.12.14]
6060

6161
steps:
6262
- name: Checkout

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name := "pdal-jni"
22

33
lazy val commonSettings = Seq(
44
version := "2.2.1" + Environment.versionSuffix,
5-
scalaVersion := "2.13.4",
6-
crossScalaVersions := Seq("2.13.4", "2.12.12", "2.11.12"),
5+
scalaVersion := "2.13.6",
6+
crossScalaVersions := Seq("2.13.6", "2.12.14", "2.11.12"),
77
organization := "io.pdal",
88
description := "PDAL JNI bindings",
99
licenses := Seq("BSD" -> url("https://github.com/PDAL/PDAL/blob/master/LICENSE.txt")),

core/src/main/scala/io/pdal/Pipeline.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
package io.pdal
3535

36-
import ch.jodersky.jni.nativeLoader
36+
import com.github.sbt.jni.nativeLoader
3737

3838
class Pipeline(val json: String) extends Native {
3939
Pipeline // reference the object so that the nativeLoader will load the JNI native libraries

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.6
1+
sbt.version=1.5.0

project/plugins.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
2-
addSbtPlugin("ch.jodersky" % "sbt-jni" % "1.4.1")
3-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")
4-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.1")
5-
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.5.0")
1+
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.0.0")
2+
addSbtPlugin("com.github.sbt" % "sbt-jni" % "1.5.0")
3+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
4+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.3")
5+
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")

0 commit comments

Comments
 (0)