From 6758714ed564d72236564889157c4812eacb96fb Mon Sep 17 00:00:00 2001
From: Roel Spilker
Date: Fri, 23 Apr 2021 00:01:55 +0200
Subject: Change owner lombok GitHub repository
---
website/resources/.well-known/security.txt | 2 +-
website/templates/_scaffold.html | 2 +-
website/templates/contact.html | 2 +-
website/templates/contributing/contributing.html | 2 +-
website/templates/contributing/index.html | 2 +-
website/templates/disable-checked-exceptions.html | 2 +-
website/templates/features/experimental/Accessors.html | 4 ++--
7 files changed, 8 insertions(+), 8 deletions(-)
(limited to 'website')
diff --git a/website/resources/.well-known/security.txt b/website/resources/.well-known/security.txt
index 486d8b66..2a36bf3c 100644
--- a/website/resources/.well-known/security.txt
+++ b/website/resources/.well-known/security.txt
@@ -3,6 +3,6 @@ Contact: mailto:info@projectlombok.org
Preferred-Languages: en
Canonical: https://projectlombok.org/.well-known/security.txt
Policy: https://tidelift.com/security
-Policy: https://github.com/rzwitserloot/lombok/blob/master/SECURITY.md
+Policy: https://github.com/projectlombok/lombok/blob/master/SECURITY.md
# If encrypted communication is required, let us know and we'll provide a public GPG key.
\ No newline at end of file
diff --git a/website/templates/_scaffold.html b/website/templates/_scaffold.html
index 39e03bb2..98eca8af 100644
--- a/website/templates/_scaffold.html
+++ b/website/templates/_scaffold.html
@@ -96,7 +96,7 @@ ga('send', 'pageview');
Community
diff --git a/website/templates/contact.html b/website/templates/contact.html
index 584c41bf..41912015 100644
--- a/website/templates/contact.html
+++ b/website/templates/contact.html
@@ -8,7 +8,7 @@
To contact us,
- There's a forum; we read and respond here.
- - If you have a feature request or bug report, please file it on our github bug tracker.
+ - If you have a feature request or bug report, please file it on our github bug tracker.
- If you have a security vulnerability to report, please contact us via our security vulnerability disclosure page.
- We love giving presentations, about lombok, or even just general java things. Send us a mail if you want to invite us to do a talk.
diff --git a/website/templates/contributing/contributing.html b/website/templates/contributing/contributing.html
index 8da9b827..54d3ac4f 100644
--- a/website/templates/contributing/contributing.html
+++ b/website/templates/contributing/contributing.html
@@ -10,7 +10,7 @@
<@main.h1 title="How to work on Project Lombok yourself" />
If you want to start development on lombok, clone the repository and run ant eclipse
or ant intellij
, then open the working directory as a project in eclipse / intellij. Because the main contributors of lombok all use eclipse, that'll probably work a little more smoothly.
diff --git a/website/templates/contributing/index.html b/website/templates/contributing/index.html
index c6c85483..f0e3ef9a 100644
--- a/website/templates/contributing/index.html
+++ b/website/templates/contributing/index.html
@@ -14,7 +14,7 @@
@main.feature>
@main.scaffold>
diff --git a/website/templates/disable-checked-exceptions.html b/website/templates/disable-checked-exceptions.html
index 4a758b11..46e05325 100644
--- a/website/templates/disable-checked-exceptions.html
+++ b/website/templates/disable-checked-exceptions.html
@@ -21,7 +21,7 @@
Ready to try it out? download it here: disableCheckedExceptions-alpha.jar
- Want to know how its done? Grab the lombok repository here on github, and look in the experimental
directory.
+ Want to know how its done? Grab the lombok repository here on github, and look in the experimental
directory.
diff --git a/website/templates/features/experimental/Accessors.html b/website/templates/features/experimental/Accessors.html
index 54d507f8..564ab66d 100644
--- a/website/templates/features/experimental/Accessors.html
+++ b/website/templates/features/experimental/Accessors.html
@@ -17,8 +17,8 @@
Current status: neutral - Some changes are expected. These changes are intended to be backwards compatible, but should start in an experimental feature:
- - Open feature request: naming behaviour for properties that start with a lowercase letter followed by an uppercase letter. Half of specs, tools and lombok users prefer that a field named
uLimit
into getULimit
(including lombok) and the other half turn prefer getuLimit
. @Accessors
may be involved in any update that addresses this request.
- - Open feature request: More control over naming accessors; for example to address creatively named boolean properties: Turn
boolean wasRunning
into boolean wasRunning()
instead of boolean isWasRunning()
, as well as more expansive prefix support. @Accessors
will be involved if this feature request is addressed.
+ - Open feature request: naming behaviour for properties that start with a lowercase letter followed by an uppercase letter. Half of specs, tools and lombok users prefer that a field named
uLimit
into getULimit
(including lombok) and the other half turn prefer getuLimit
. @Accessors
may be involved in any update that addresses this request.
+ - Open feature request: More control over naming accessors; for example to address creatively named boolean properties: Turn
boolean wasRunning
into boolean wasRunning()
instead of boolean isWasRunning()
, as well as more expansive prefix support. @Accessors
will be involved if this feature request is addressed.
@Accessors
currently does not 'cascade' from field @Accessors
annotation to the class-level @Accessors
annotation, but it does 'cascade' to lombok.config
. Changing this is not difficult but backwards incompatible. It's not likely to break much existing code, but this needs to be decided on before the feature can move out of experimental status.
@f.experimental>
--
cgit