From 99a21b56871d1bf83fc176010396924692160604 Mon Sep 17 00:00:00 2001 From: Yichen Xu Date: Tue, 21 Apr 2026 16:02:22 +0200 Subject: [PATCH] Update tacit publishing config --- build.sbt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 21c18621..f649eaa2 100644 --- a/build.sbt +++ b/build.sbt @@ -16,12 +16,17 @@ val scala3Version = { // val scala3Version = "3.8.4-RC1-bin-SNAPSHOT" ThisBuild / resolvers += Resolver.scalaNightlyRepository +val tacitVersion = "0.1.4-SNAPSHOT" +val tacitLibVersion = tacitVersion + val circeVersion = "0.14.15" lazy val lib = project .in(file("library")) .settings( + organization := "lampepfl", name := "TACIT-library", + version := tacitLibVersion, scalaVersion := scala3Version, Compile / unmanagedSourceDirectories := Seq( baseDirectory.value, @@ -62,7 +67,8 @@ lazy val root = project .aggregate(lib) .settings( name := "TACIT", - version := "0.1.4-SNAPSHOT", + organization := "lampepfl", + version := tacitVersion, scalaVersion := scala3Version,