Skip to content

Commit

Permalink
Add a complete snippet to paste to build
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit adbc844
Author: Jacek Laskowski <jacek@japila.pl>
Date:   Mon Jun 23 15:30:57 2014 +0200

    Fixes after @szeiger's comments

commit 1b205e0
Author: Jacek Laskowski <jacek@japila.pl>
Date:   Tue Jun 17 23:20:38 2014 +0200

    Add a complete snippet to paste to build
  • Loading branch information
szeiger committed Jun 23, 2014
1 parent a73bc7d commit 0ce4f51
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/sphinx/gettingstarted.rst
Expand Up @@ -29,11 +29,13 @@ Adding Slick to Your Project
============================

To include Slick in an existing project use the library published on Maven Central. For sbt projects add the
following to your ``libraryDependencies``:
following to your build definition - ``build.sbt`` or ``project/Build.scala``:

.. parsed-literal::
"com.typesafe.slick" %% "slick" % "|release|",
"org.slf4j" % "slf4j-nop" % "1.6.4"
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % "|release|",
"org.slf4j" % "slf4j-nop" % "1.6.4"
)
For Maven projects add the following to your ``<dependencies>``:

Expand Down

0 comments on commit 0ce4f51

Please sign in to comment.