We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7276440 + 0a1ee0d commit 3b8f463Copy full SHA for 3b8f463
1 file changed
lombok-ext/README.md
@@ -0,0 +1,26 @@
1
+Multiline string support for Java < 15
2
+
3
+Main.java
4
+```java
5
+/*
6
+SELECT
7
+ NAME, COLOR
8
+FROM FRUIT;
9
+*/
10
+@TextBlock
11
+final String sql = TextBlocks.lazyInit();
12
+System.out.println(sql);
13
+```
14
15
+Output
16
17
18
19
20
21
22
+Configuring
23
+```groovy
24
+annotationProcessor("com.mageddo.lombok:lombok-ext:2.3.4")
25
+compileOnly("com.mageddo.lombok:lombok-ext:2.3.4")
26
0 commit comments