This repository has been archived by the owner on Mar 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.sbt
54 lines (41 loc) · 1.99 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name := "sbt-catalysts"
description := "SBT plugin for Catalysts"
libraryDependencies += "org.slf4j" % "slf4j-nop" % "1.7.36"
enablePlugins(SbtPlugin)
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.12")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.9.9")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.3.4")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.22")
scalacOptions ++= Seq(Opts.compile.deprecation, "-feature")
scalaVersion := "2.12.15"
scmInfo := Some(ScmInfo(url("https://github.com/typelevel/sbt-catalysts"), "[email protected]:typelevel/sbt-catalysts.git"))
inThisBuild(List(
organization := "org.typelevel",
homepage := Some(url("https://github.com/typelevel/sbt-catalysts")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"kailuowang",
"Kailuo Wang",
url("https://kailuowang.com")
)
),
versionScheme := Some("semver-spec")
))
scriptedBufferLog := false
scriptedLaunchOpts := Seq(
"-Xmx1024M",
"-Dplugin.version=" + version.value
)
//self referencing so that dependencies can be monitored by Scala Steward
org.typelevel.libraries.testDependencies(org.typelevel.libraries.libs.keys.toSeq:_*)