Skip to content

Commit 3b8f463

Browse files
authored
Merge pull request #7 from mageddo-projects/docs
setup doc
2 parents 7276440 + 0a1ee0d commit 3b8f463

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

lombok-ext/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
SELECT
18+
NAME, COLOR
19+
FROM FRUIT;
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

Comments
 (0)