aboutsummaryrefslogtreecommitdiff
path: root/website/templates
diff options
context:
space:
mode:
authorThomas Klambauer <thomas-klambauer@users.noreply.github.com>2018-07-17 13:35:34 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-07-17 21:39:29 +0200
commit0375f1a9e8f606588d4e136fc718a6876ff0ae4f (patch)
treef9f2c359324af1e99b21d3cf27c0e6d5448ea7d4 /website/templates
parent37434ba0cba68ea232efea0824d3f71e5e287dc2 (diff)
downloadlombok-0375f1a9e8f606588d4e136fc718a6876ff0ae4f.tar.gz
lombok-0375f1a9e8f606588d4e136fc718a6876ff0ae4f.tar.bz2
lombok-0375f1a9e8f606588d4e136fc718a6876ff0ae4f.zip
lombok config broken: version must be string
otherwise gradle compile will fail.
Diffstat (limited to 'website/templates')
-rw-r--r--website/templates/setup/gradle.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/templates/setup/gradle.html b/website/templates/setup/gradle.html
index 7cb4af0d..41d90dcc 100644
--- a/website/templates/setup/gradle.html
+++ b/website/templates/setup/gradle.html
@@ -15,7 +15,7 @@
</p><p>
Note, to tell the <code>gradle-lombok</code> plugin to use the latest version of lombok, you need to explicitly tell it about the latest version number and the SHA-256. For our current latest version, put this in your <code>build.gradle</code> file:<pre>
lombok {
- version = ${version}
+ version = '${version}'
sha256 = ""
}</pre>
</p>