Fabio Ponciroli | 386aebb | 2019-05-21 20:30:41 -0700 | [diff] [blame] | 1 | import Dependencies._ |
| 2 | |
| 3 | enablePlugins(GatlingPlugin) |
| 4 | |
| 5 | lazy val gatlingGitExtension = RootProject(uri("git://github.com/GerritForge/gatling-git.git")) |
| 6 | lazy val root = (project in file(".")) |
| 7 | .settings( |
| 8 | inThisBuild(List( |
| 9 | organization := "com.google.gerrit", |
| 10 | scalaVersion := "2.12.8", |
| 11 | version := "0.1.0-SNAPSHOT" |
| 12 | )), |
| 13 | name := "gerrit", |
| 14 | libraryDependencies ++= |
| 15 | gatling ++ |
| 16 | Seq("io.gatling" % "gatling-core" % "3.1.1" ) ++ |
| 17 | Seq("io.gatling" % "gatling-app" % "3.1.1" ) |
| 18 | ) dependsOn(gatlingGitExtension) |