-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (25 loc) · 903 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ThisBuild / organization := "com.github.ppbustamante"
ThisBuild / scalaVersion := "3.3.5"
ThisBuild / version := "1.0.0"
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / homepage := Some(url("https://github.com/ppbustamante/scala-stdnum"))
ThisBuild / licenses := Seq(
"LICENSE" -> url("https://github.com/ppbustamante/scala-stdnum/blob/main/LICENSE")
)
ThisBuild / publishMavenStyle := true
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishTo := Some(
"GitHub ppbustamante Apache Maven Packages" at "https://maven.pkg.github.com/ppbustamante/scala-stdnum"
)
ThisBuild / credentials += Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
"ppbustamante",
System.getenv("GITHUB_TOKEN")
)
lazy val root = project
.in(file("."))
.settings(
name := "scala-stdnum",
libraryDependencies += "org.scalameta" %% "munit" % "1.1.0" % Test
)