blob: c6c85483d1dddbae5a8f63e132aa13d1b13d80c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<#import "../_scaffold.html" as main>
<@main.scaffold title="Documentation for being a lombok developer">
<div class="page-header top5">
<div class="row text-center">
<@main.h1 title="Documentation for lombok developers" />
</div>
<div class="row">
<@main.feature title="contributing" href="contributing">
Want to contribute to Project Lombok? Start by reading this introduction.
</@main.feature>
<@main.feature title="execution path" href="lombok-execution-path">
Discusses how lombok ends up being invoked, and how it gets around to transforming code being compiled / edited.
</@main.feature>
</div>
<div class="row">
More documentation can be found on the <a href="https://github.com/rzwitserloot/lombok/wiki">project lombok github wiki</a>.
</div>
</div>
</@main.scaffold>
|