From 99f373c7e2bd270ef2eb6ecc8037a238635582ab Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 8 May 2017 22:32:19 +0200 Subject: website build script updated to work with new template based website. --- website/extra/download-edge-none.html | 54 ++++++++++++++++++++++++++++ website/extra/download-edge.html | 63 +++++++++++++++++++++++++++++++++ website/templates/features/Builder.html | 2 +- 3 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 website/extra/download-edge-none.html create mode 100644 website/extra/download-edge.html (limited to 'website') diff --git a/website/extra/download-edge-none.html b/website/extra/download-edge-none.html new file mode 100644 index 00000000..07091b90 --- /dev/null +++ b/website/extra/download-edge-none.html @@ -0,0 +1,54 @@ + + + + + + + Project Lombok - Cutting Edge build + + +
+

Download Lombok Cutting Edge build

+
+ No edge build as been released since the last stable release of lombok. +
+ +
+ + + diff --git a/website/extra/download-edge.html b/website/extra/download-edge.html new file mode 100644 index 00000000..4cf794a6 --- /dev/null +++ b/website/extra/download-edge.html @@ -0,0 +1,63 @@ + + + + + + + Project Lombok - Cutting Edge build + + +
+

Download Lombok Cutting Edge build

+
+ version: @VERSION-EDGE@ +
+

+ @CHANGELOG-EDGE@ +

+ + Download now! + +

+ Cutting edge a bit too gutsy for you? You can grab the stable release instead. +

+ +
+ + + diff --git a/website/templates/features/Builder.html b/website/templates/features/Builder.html index a6b8d18f..96a30d99 100644 --- a/website/templates/features/Builder.html +++ b/website/templates/features/Builder.html @@ -74,7 +74,7 @@

If a certain field/parameter is never set during a build session, then it always gets 0 / null / false. If you've put @Builder on a class (and not a method or constructor) you can instead specify the default directly on the field, and annotate the field with @Builder.Default:
- @Builder.Default private final long created = System.currentTimeMillis(); + @Builder.Default private final long created = System.currentTimeMillis();

-- cgit