Skip to content

Commit

Permalink
Publish fix
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 14, 2024
1 parent 4ced485 commit d9209f7
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "overflowdb2"
ThisBuild / organization := "io.appthreat"
ThisBuild / version := "0.0.1"
ThisBuild / version := "0.0.2"
ThisBuild / scalaVersion := "3.3.1"
publish / skip := true

Expand Down
10 changes: 10 additions & 0 deletions core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,13 @@ libraryDependencies ++= Seq(
"org.msgpack" % "msgpack-core" % "0.9.1",
"com.h2database" % "h2-mvstore" % "1.4.200"
)
githubOwner := "appthreat"
githubRepository := "overflowdb2"
githubSuppressPublicationWarning := true
credentials +=
Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
"appthreat",
sys.env.getOrElse("GITHUB_TOKEN", "N/A")
)
10 changes: 10 additions & 0 deletions formats/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,13 @@ libraryDependencies ++= Seq(
)

Test / console / scalacOptions -= "-Xlint"
githubOwner := "appthreat"
githubRepository := "overflowdb2"
githubSuppressPublicationWarning := true
credentials +=
Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
"appthreat",
sys.env.getOrElse("GITHUB_TOKEN", "N/A")
)
10 changes: 10 additions & 0 deletions traversal/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@ libraryDependencies ++= Seq(
"org.reflections" % "reflections" % "0.10.2",
"com.massisframework" % "j-text-utils" % "0.3.4"
)
githubOwner := "appthreat"
githubRepository := "overflowdb2"
githubSuppressPublicationWarning := true
credentials +=
Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
"appthreat",
sys.env.getOrElse("GITHUB_TOKEN", "N/A")
)

0 comments on commit d9209f7

Please sign in to comment.