4aaa88829a
As that plugin ([1]) is the mainstream one for sbt in IntelliJ IDEA. Recommend the latter IDE use for this Scala project. Reformat the build.sbt file accordingly, to start with. IntelliJ so far has been the most stable and reproducible development environment for Scala with sbt. [1] https://plugins.jetbrains.com/plugin/1347-scala Change-Id: Ib1ca9bc7cac4dca5b7da114ea3f3068a522bccd6
19 lines
583 B
Scala
19 lines
583 B
Scala
import Dependencies._
|
|
|
|
enablePlugins(GatlingPlugin)
|
|
|
|
lazy val gatlingGitExtension = RootProject(uri("git://github.com/GerritForge/gatling-git.git"))
|
|
lazy val root = (project in file("."))
|
|
.settings(
|
|
inThisBuild(List(
|
|
organization := "com.google.gerrit",
|
|
scalaVersion := "2.12.8",
|
|
version := "0.1.0-SNAPSHOT"
|
|
)),
|
|
name := "gerrit",
|
|
libraryDependencies ++=
|
|
gatling ++
|
|
Seq("io.gatling" % "gatling-core" % "3.1.1") ++
|
|
Seq("io.gatling" % "gatling-app" % "3.1.1")
|
|
) dependsOn gatlingGitExtension
|