-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (33 loc) · 1.43 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
enablePlugins(JavaAppPackaging)
inThisBuild(
List(
description := "PMD plugin for apex-ls",
organization := "io.github.apex-dev-tools",
homepage := Some(url("https://github.com/apex-dev-tools/apex-ls-pmd")),
licenses := List("BSD-3-Clause" -> url("https://opensource.org/licenses/BSD-3-Clause")),
developers := List(
Developer(
"apexdevtools",
"Apex Dev Tools Team",
url("https://github.com/apex-dev-tools")
)
),
versionScheme := Some("strict"),
isSnapshot := false,
crossPaths := false, // drop off Scala suffix from artifact names.
autoScalaLibrary := false, // exclude scala-library from dependencies
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
resolvers += Resolver.mavenLocal
)
)
name := "apex-ls-pmd"
maintainer := "[email protected]"
libraryDependencies ++= Seq(
"io.github.apex-dev-tools" % "apex-types_2.13" % "1.3.0",
"net.sourceforge.pmd" % "pmd-apex" % "7.0.0-rc4" exclude ("com.github.nawforce", "apexlink"),
"org.slf4j" % "slf4j-simple" % "1.7.36", // NOTE: match slf4j api version used by pmd
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
"io.github.apex-dev-tools" % "apex-ls_2.13" % "4.3.1" % Test
)