-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (18 loc) · 914 Bytes
/
build.sbt
File metadata and controls
23 lines (18 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name := "sbt-ci-release-early-usage"
organization := "com.michaelpollmeier"
scalaVersion := "3.6.4"
crossScalaVersions := Seq(scalaVersion.value, "2.13.16")
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.18"
ThisBuild / scalacOptions ++= Seq("-release", "8")
ThisBuild / javacOptions ++= Seq(
"-g", // debug symbols
"--release", "8"
)
scmInfo := Some(ScmInfo(
url("https://github.com/mpollmeier/sbt-ci-release-early-usage"),
"scm:[email protected]:mpollmeier/sbt-ci-release-early-usage.git"))
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
developers := List(Developer("mpollmeier", "Michael Pollmeier", "[email protected]", url("https://michaelpollmeier.com")))
homepage := Some(url("https://github.com/mpollmeier/sbt-ci-release-early-usage/"))
publishTo := sonatypePublishToBundle.value
sonatypeCredentialHost := "central.sonatype.com"