forked from sbt/sbt-cpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (30 loc) · 1001 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
30
31
32
33
34
35
name := "sbt-cpd"
organization := "com.github.sbt"
version := "2.0.1-SNAPSHOT"
sbtPlugin := true
crossSbtVersions := Seq("0.13.16", "1.0.2")
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature",
"-Xfuture",
"-Ywarn-adapted-args",
"-Ywarn-dead-code")
libraryDependencies ++= Seq(
"net.sourceforge.pmd" % "pmd-core" % "6.35.0",
"net.sourceforge.pmd" % "pmd-java" % "6.35.0",
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
)
licenses += (("Eclipse Public License v1.0", url("http://www.eclipse.org/legal/epl-v10.html")))
headerLicense := Some(HeaderLicense.Custom(
"""|This file is part of sbt-cpd
|
|Copyright (c) Joachim Hofer & contributors
|All rights reserved.
|
|This program and the accompanying materials
|are made available under the terms of the Eclipse Public License v1.0
|which accompanies this distribution, and is available at
|http://www.eclipse.org/legal/epl-v10.html
|""".stripMargin
))