diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-29 22:20:25 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-29 22:20:25 +0100 |
commit | b6e54e73e11804c2d242a7772ad12c160349896a (patch) | |
tree | c2c2a29454acb32eedf8653c3313ec0a3df3ec99 | |
parent | f8acd3fd0b6ce6166ae1d3ce6ec1dba5332a2abb (diff) | |
parent | 343e5ef6ecdcefdd86d3741bb4fb38b9915f163a (diff) | |
download | lombok-b6e54e73e11804c2d242a7772ad12c160349896a.tar.gz lombok-b6e54e73e11804c2d242a7772ad12c160349896a.tar.bz2 lombok-b6e54e73e11804c2d242a7772ad12c160349896a.zip |
Merge pull request #57 from edofic/patch-1
add instructions for using lombok with sbt
-rw-r--r-- | website/mavenrepo/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html index 01227bbd..29716920 100644 --- a/website/mavenrepo/index.html +++ b/website/mavenrepo/index.html @@ -60,6 +60,11 @@ You can use lombok with ivy by adding the following to your <strong>ivy.xml</strong>: <div class="snippet"><dependency org="org.projectlombok" name="lombok" rev="@VERSION@" conf="build" /></div> </div> + <h2>SBT</h2> + <div> + You can use lombok with SBT by adding the following to your <strong>build.sbt</strong>: + <div class="snippet">libraryDependencies += "org.projectlombok" % "lombok" % "@VERSION@"</div> + </div> <h2>Gradle</h2> <div> You can use lombok with gradle by adding the following to your <strong>build.gradle</strong> in the <strong>dependencies</strong> block: |