forked from bmc/grizzled-slf4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
65 lines (46 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
64
65
// ---------------------------------------------------------------------------
// SBT 0.10.x build file for Grizzled SLF4J
// (http://software.clapper.org/grizzled-slf4j)
//
// Copyright (c) 2010-2016 Brian M. Clapper
//
// See accompanying license file for Grizzled SLF4J license.
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
// Basic settings
name := "grizzled-slf4j"
organization := "org.clapper"
version := "1.3.4"
licenses := Seq("BSD" -> url("http://software.clapper.org/grizzled-slf4j/license.html"))
homepage := Some(url("http://software.clapper.org/grizzled-slf4j/"))
description := "A Scala-friendly wrapper for the SLF4J logging framework"
scalaVersion := "2.12.11"
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.11", "2.13.1")
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
// Additional compiler options and plugins
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
"org.slf4j" % "slf4j-api" % "1.7.9"
)
// ---------------------------------------------------------------------------
// Publishing criteria
// Don't set publishTo. The Bintray plugin does that automatically.
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<scm>
<url>git@github.com:bmc/grizzled-slf4j.git/</url>
<connection>scm:git:git@github.com:bmc/grizzled-slf4j.git</connection>
</scm>
<developers>
<developer>
<id>bmc</id>
<name>Brian Clapper</name>
<url>https://github.com/bmc</url>
</developer>
</developers>
)