blob: 59d1b6a13360390cdce475dbd31a4c27b0d9909c [file] [log] [blame]
enablePlugins(GitVersioning)
val gerritApiVersion = "3.0.0"
val pluginName = "analytics"
git.useGitDescribe := true
concurrentRestrictions in Global += Tags.limit(Tags.Test, 1)
lazy val root = (project in file("."))
.settings(
name := pluginName,
resolvers += Resolver.mavenLocal,
version := gerritApiVersion,
scalaVersion := "2.11.8",
libraryDependencies ++= Seq(
"io.fabric8" % "gitective-core" % "0.9.54"
exclude ("org.eclipse.jgit", "org.eclipse.jgit"),
"com.google.inject" % "guice" % "4.2.0" % Provided,
"com.google.gerrit" % "gerrit-plugin-api" % gerritApiVersion % Provided withSources(),
"com.google.code.gson" % "gson" % "2.8.5" % Provided,
"joda-time" % "joda-time" % "2.9.9",
"com.google.gerrit" % "gerrit-acceptance-framework" % gerritApiVersion % Test,
"org.bouncycastle" % "bcprov-jdk15on" % "1.60" % Test,
"org.scalatest" %% "scalatest" % "3.0.1" % Test,
"net.codingwell" %% "scala-guice" % "4.1.0" % Test),
assemblyJarName in assembly := s"$pluginName.jar",
packageOptions in(Compile, packageBin) += Package.ManifestAttributes(
("Gerrit-ApiType", "plugin"),
("Gerrit-PluginName", pluginName),
("Gerrit-Module", "com.googlesource.gerrit.plugins.analytics.Module"),
("Gerrit-SshModule", "com.googlesource.gerrit.plugins.analytics.SshModule"),
("Implementation-Title", "Analytics plugin"),
("Implementation-URL", "https://gerrit.googlesource.com/plugins/analytics")
)
)