From 0718855beb39d976edb4dc31e6ef8b4872bd67dc Mon Sep 17 00:00:00 2001 From: Pierrick Rassat Date: Fri, 24 Jan 2020 22:32:53 +0100 Subject: Change README to README.md and add hyperlinks --- README | 12 ------------ README.md | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 12 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index b6fc5e26..00000000 --- a/README +++ /dev/null @@ -1,12 +0,0 @@ -Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. -Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more. - -See LICENSE for the Project Lombok license. - -Looking for professional support of Project Lombok? Lombok is now part of a tidelift subscription! - -For a list of all authors, see the AUTHORS file. - -For complete project information, see https://projectlombok.org/ - -You can review our security policy via SECURITY.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..718beab1 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# Project Lombok + +Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. +Never write another getter or equals method again, with one annotation your class has a fully featured builder, automate your logging variables, and much more. + +See [LICENSE](https://github.com/rzwitserloot/lombok/blob/master/LICENSE) for the Project Lombok license. + +Looking for professional support of Project Lombok? Lombok is now part of a [tidelift subscription](https://tidelift.com/subscription/pkg/maven-org-projectlombok-lombok?utm_source=maven-org-projectlombok-lombok&utm_medium=referral&campaign=website)! + +For a list of all authors, see the [AUTHORS](https://github.com/rzwitserloot/lombok/blob/master/AUTHORS) file. + +For complete project information, see [projectlombok.org](https://projectlombok.org/) + +You can review our security policy via [SECURITY.md](https://github.com/rzwitserloot/lombok/blob/master/SECURITY.md) -- cgit From 2caba79c769c161d400084c4c9ede9f0d3370c6e Mon Sep 17 00:00:00 2001 From: Pierrick Rassat Date: Sat, 25 Jan 2020 08:05:33 +0100 Subject: Use reference links instead of inlined links --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 718beab1..1b5ba74d 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,18 @@ Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equals method again, with one annotation your class has a fully featured builder, automate your logging variables, and much more. -See [LICENSE](https://github.com/rzwitserloot/lombok/blob/master/LICENSE) for the Project Lombok license. +See [LICENSE][licence-file] for the Project Lombok license. -Looking for professional support of Project Lombok? Lombok is now part of a [tidelift subscription](https://tidelift.com/subscription/pkg/maven-org-projectlombok-lombok?utm_source=maven-org-projectlombok-lombok&utm_medium=referral&campaign=website)! +Looking for professional support of Project Lombok? Lombok is now part of a [tidelift subscription][tidelift-sub]! -For a list of all authors, see the [AUTHORS](https://github.com/rzwitserloot/lombok/blob/master/AUTHORS) file. +For a list of all authors, see the [AUTHORS][authors-file] file. -For complete project information, see [projectlombok.org](https://projectlombok.org/) +For complete project information, see [projectlombok.org][projectlombok-site] -You can review our security policy via [SECURITY.md](https://github.com/rzwitserloot/lombok/blob/master/SECURITY.md) +You can review our security policy via [SECURITY.md][security-file] + +[licence-file]: https://github.com/rzwitserloot/lombok/blob/master/LICENSE +[authors-file]: https://github.com/rzwitserloot/lombok/blob/master/AUTHORS +[security-file]: https://github.com/rzwitserloot/lombok/blob/master/SECURITY.md +[projectlombok-site]: https://projectlombok.org/ +[tidelift-sub]: https://tidelift.com/subscription/pkg/maven-org-projectlombok-lombok?utm_source=maven-org-projectlombok-lombok&utm_medium=referral&campaign=website -- cgit From 7b593ca7a9b0643b47d81e8c78b77f1c62e1056e Mon Sep 17 00:00:00 2001 From: Pierrick Rassat Date: Sat, 25 Jan 2020 08:12:35 +0100 Subject: Include README.md file in JAR packaging --- build.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/build.xml b/build.xml index 4f921e7d..c21d1401 100644 --- a/build.xml +++ b/build.xml @@ -334,6 +334,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor,isolating ${releaseTimestamp} + -- cgit