Skip to content

Commit e2432bb

Browse files
authored
update SBT and plugins, prepare for the central migration (#113)
1 parent 05dce01 commit e2432bb

File tree

9 files changed

+14
-13
lines changed

9 files changed

+14
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
os: [ubuntu-latest]
8989
java: [11]
9090
distribution: [temurin]
91-
pdal: [2.8.1]
91+
pdal: [2.8.4]
9292
runs-on: ${{ matrix.os }}
9393
if: github.event_name != 'pull_request'
9494
needs: [build]

HOWTORELEASE.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Release Process
1515

1616
1) Publish JNI Bindings
1717
What you need:
18-
- an account on sonatype (https://issues.sonatype.org/secure/Signup!default.jspa)
18+
- (new) an account on central (https://central.sonatype.com/publishing/deployments)
19+
- (old) an account on sonatype (https://issues.sonatype.org/secure/Signup!default.jspa)
1920
- ~/.sbt/1.0/sonatype.sbt file with the following content:
2021
credentials += Credentials("Sonatype Nexus Repository Manager",
2122
"oss.sonatype.org",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PDAL Java Bindings
22

3-
[![CI](https://github.com/PDAL/java/workflows/CI/badge.svg)](https://github.com/PDAL/java/actions) [![Join the chat at https://gitter.im/PDAL/PDAL](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/PDAL/PDAL?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Maven Central](https://img.shields.io/maven-central/v/io.pdal/pdal_2.13)](https://search.maven.org/search?q=g:io.pdal) [![Snapshots](https://img.shields.io/nexus/s/https/oss.sonatype.org/io.pdal/pdal_2.13)](https://oss.sonatype.org/content/repositories/snapshots/io/pdal/)
3+
[![CI](https://github.com/PDAL/java/workflows/CI/badge.svg)](https://github.com/PDAL/java/actions) [![Join the chat at https://gitter.im/PDAL/PDAL](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/PDAL/PDAL?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Maven Central](https://img.shields.io/maven-central/v/io.pdal/pdal_2.13)](https://search.maven.org/search?q=g:io.pdal) [![Snapshots Badge](https://img.shields.io/badge/snapshots-available-orange)](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io.pdal/)
44

55

66
Java bindings to use PDAL on JVM (supports PDAL >= 2.0). macOS users can experience some issues with bindings that were build against a different PDAL version, so try to use a consistent PDAL version.

build.sbt

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

3-
val scala212 = "2.12.19"
4-
val scala213 = "2.13.15"
5-
val scala3 = "3.5.0"
3+
val scala212 = "2.12.20"
4+
val scala213 = "2.13.16"
5+
val scala3 = "3.7.1"
66
val scalaVersions = Seq(scala3, scala213, scala212)
77

88
lazy val commonSettings = Seq(

examples/pdal-jni/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
val scala212 = "2.12.19"
2-
val scala213 = "2.13.15"
3-
val scala3 = "3.5.0"
1+
val scala212 = "2.12.20"
2+
val scala213 = "2.13.16"
3+
val scala3 = "3.7.1"
44
val scalaVersions = Seq(scala3, scala213, scala212)
55

66
name := "pdal-jni"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.2
1+
sbt.version=1.11.2

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import de.heikoseeberger.sbtheader.HeaderPlugin.autoImport.{headerLicense, heade
77
object Version {
88
val jts = "1.20.0"
99
val scalaTest = "3.2.19"
10-
val circe = "0.14.10"
10+
val circe = "0.14.14"
1111
val circeExtras = "0.14.4"
1212
}
1313

project/build.properties

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

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
addSbtPlugin("com.github.sbt" % "sbt-jni" % "1.7.0")
22
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
33
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
4-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
4+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
55
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

0 commit comments

Comments
 (0)