forked from idio/sbt-assembly-log4j2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
19 lines (19 loc) · 1.06 KB
/
build.sbt
File metadata and controls
19 lines (19 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
lazy val root = (project in file(".")).
settings(
sbtPlugin := true,
name := "sbt-assembly-log4j2",
organization := "com.michaelpollmeier",
description := "sbt assembly plugin merge strategy for log4j2 plugins",
licenses := Seq("MIT License" -> url("https://github.com/idio/sbt-assembly-log4j2/blob/master/LICENSE")),
scalacOptions := Seq("-deprecation", "-unchecked"),
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1"),
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.20.0",
crossSbtVersions := Seq("1.9.4"),
crossScalaVersions := Seq("2.12.18"),
developers := List(
Developer("mpollmeier", "Michael Pollmeier", "michael@michaelpollmeier.com", url("http://www.michaelpollmeier.com/"))),
scmInfo := Some(ScmInfo(url("https://github.com/mpollmeier/sbt-assembly-log4j2"),
"scm:git@github.com:mpollmeier/sbt-assembly-log4j2.git")),
homepage := Some(url("https://github.com/mpollmeier/sbt-assembly-log4j2/")),
publishTo := sonatypePublishToBundle.value,
)