-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
30 lines (25 loc) · 1.04 KB
/
Copy pathbuild.sbt
File metadata and controls
30 lines (25 loc) · 1.04 KB
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
organization := "io.github.zamblauskas"
name := "sbt-examplestest"
scalaVersion := "2.12.10"
libraryDependencies ++= Seq(
"com.vladsch.flexmark" % "flexmark" % "0.50.48",
"com.google.guava" % "guava" % "28.2-jre",
"commons-io" % "commons-io" % "2.6",
"org.scalatest" %% "scalatest" % "3.1.0" % Test,
"org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % Test
)
sbtPlugin := true
licenses := ("MIT", url("https://opensource.org/licenses/MIT")) :: Nil
startYear := Some(2017)
organizationName := "github.com/zamblauskas/sbt-examplestest/graphs/contributors"
homepage := Some(url("https://github.com/zamblauskas/sbt-examplestest"))
developers := List(
Developer(
"contributors",
"Contributors",
"https://github.com/zamblauskas/sbt-examplestest/graphs/contributors",
url("https://github.com/zamblauskas/sbt-examplestest/graphs/contributors")
)
)
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"