Skip to content

Commit

Permalink
build: update scala build (#1725)
Browse files Browse the repository at this point in the history
* sbt 1.10.0
* scalatest 3.2.19
* scala 2.13.14
* add Apache Snapshot Repo resolver so you don't need to build the Java
jars, the build can get them from the snapshot repo
  • Loading branch information
pjfanning authored Jul 9, 2024
1 parent 15e25bd commit e07c51e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@
*/

name := "fury-scala"
scalaVersion := "2.13.13"
crossScalaVersions := Seq("2.13.12", "3.3.3")
val scala213Version = "2.13.14"
scalaVersion := scala213Version
crossScalaVersions := Seq(scala213Version, "3.3.3")

resolvers += Resolver.mavenLocal
resolvers += Resolver.ApacheMavenSnapshotsRepo

val furyVersion = "0.6.0-SNAPSHOT"
libraryDependencies ++= Seq(
"org.apache.fury" % "fury-core" % furyVersion,
"org.scalatest" %% "scalatest" % "3.2.17",
"org.scalatest" %% "scalatest" % "3.2.19",
)
2 changes: 1 addition & 1 deletion scala/project/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

sbt.version=1.9.9
sbt.version=1.10.0

0 comments on commit e07c51e

Please sign in to comment.