diff options
author | Thomas Klambauer <thomas-klambauer@users.noreply.github.com> | 2018-07-17 13:35:34 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2018-07-17 21:39:29 +0200 |
commit | 0375f1a9e8f606588d4e136fc718a6876ff0ae4f (patch) | |
tree | f9f2c359324af1e99b21d3cf27c0e6d5448ea7d4 /website/templates | |
parent | 37434ba0cba68ea232efea0824d3f71e5e287dc2 (diff) | |
download | lombok-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.html | 2 |
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> |