-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (24 loc) · 923 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
29
name := "js-module-loader"
organization := "ru.dgolubets"
scalaVersion := "2.12.5"
crossScalaVersions := List("2.11.6", "2.12.5")
releaseCrossBuild := true
scalacOptions ++= Seq("-feature", "-deprecation", "-target:jvm-1.8")
libraryDependencies ++= Seq(
"com.typesafe.scala-logging" %% "scala-logging" % "3.8.0",
"ch.qos.logback" % "logback-classic" % "1.1.1" % "test",
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
)
// publishing
bintrayRepository := "releases"
bintrayOrganization in bintray := Some("dgolubets")
bintrayPackageLabels := Seq("js", "nashorn", "module", "loader")
licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/DGolubets/js-module-loader"))
publishMavenStyle := true
publishArtifact in Test := false
developers := List(Developer(
"dgolubets",
"Dmitry Golubets",
"dgolubets@gmail.com",
url("https://github.com/DGolubets")))