-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.sbt
42 lines (35 loc) · 1.2 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
name := "sbt-checkstyle-plugin"
organization := "com.etsy"
version := "3.1.2-SNAPSHOT"
sbtPlugin := true
crossSbtVersions := Seq("0.13.16", "1.1.0")
libraryDependencies ++= Seq(
"com.puppycrawl.tools" % "checkstyle" % "6.15",
"net.sf.saxon" % "Saxon-HE" % "9.6.0-5",
"org.scalatest" %% "scalatest" % "3.0.4" % "test",
"junit" % "junit" % "4.11" % "test",
"com.github.stefanbirkner" % "system-rules" % "1.6.0" % "test"
)
xerial.sbt.Sonatype.sonatypeSettings
publishTo := sonatypePublishTo.value
pomExtra := <url>https://github.com/etsy/sbt-checkstyle-plugin</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:etsy/sbt-checkstyle-plugin.git</url>
<connection>scm:git:git@github.com:etsy/sbt-checkstyle-plugin.git</connection>
</scm>
<developers>
<developer>
<id>ajsquared</id>
<name>Andrew Johnson</name>
<url>github.com/ajsquared</url>
</developer>
</developers>
scalastyleConfig := file("scalastyle.xml")
scalastyleFailOnError := true