aboutsummaryrefslogtreecommitdiff
path: root/documentation/example/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2018-10-11 14:19:28 -0700
committerJakob Odersky <jakob@driver.xyz>2018-10-12 13:13:17 -0700
commita43556851bf986b81351fc9f1ae5ba51bf21dc47 (patch)
treeb5863203cb94b510ec4e4c2c611dd15317cbd5b8 /documentation/example/build.sbt
parent03ed05c0fcb948237d66f032c4e530b2349404b9 (diff)
downloaddriver-core-a43556851bf986b81351fc9f1ae5ba51bf21dc47.tar.gz
driver-core-a43556851bf986b81351fc9f1ae5ba51bf21dc47.tar.bz2
driver-core-a43556851bf986b81351fc9f1ae5ba51bf21dc47.zip
Add an example to the README and a standalone application templateHEADv2.0.0-M5masterjo/example
Diffstat (limited to 'documentation/example/build.sbt')
-rw-r--r--documentation/example/build.sbt6
1 files changed, 6 insertions, 0 deletions
diff --git a/documentation/example/build.sbt b/documentation/example/build.sbt
new file mode 100644
index 0000000..d2bd592
--- /dev/null
+++ b/documentation/example/build.sbt
@@ -0,0 +1,6 @@
+lazy val `example-app` = project
+ .in(file("."))
+ .enablePlugins(ServicePlugin)
+ .settings(
+ libraryDependencies += "xyz.driver" %% "core-init" % "2.0.0-M5"
+ )