File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 9
9
<url >https://github.com/noncat-lang/java-template-engine</url >
10
10
11
11
<properties >
12
+ <src .dir>${project.basedir} /src/main/java</src .dir>
12
13
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13
14
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
14
15
<maven .compiler.release>11</maven .compiler.release>
55
56
</dependencies >
56
57
57
58
<build >
59
+ <sourceDirectory >${src.dir} </sourceDirectory >
58
60
<plugins >
59
61
<plugin >
60
62
<groupId >org.apache.maven.plugins</groupId >
128
130
<id >release</id >
129
131
<properties >
130
132
<gpg .executable>gpg</gpg .executable>
133
+ <src .dir>${project.build.directory} /delombok</src .dir>
131
134
</properties >
132
135
<distributionManagement >
133
136
<snapshotRepository >
173
176
<artifactId >maven-release-plugin</artifactId >
174
177
<version >3.0.0-M5</version >
175
178
</plugin >
179
+ <plugin >
180
+ <groupId >org.projectlombok</groupId >
181
+ <artifactId >lombok-maven-plugin</artifactId >
182
+ <version >1.18.20.0</version >
183
+ <executions >
184
+ <execution >
185
+ <phase >generate-sources</phase >
186
+ <goals >
187
+ <goal >delombok</goal >
188
+ </goals >
189
+ <configuration >
190
+ <addOutputDirectory >false</addOutputDirectory >
191
+ <sourceDirectory >${project.basedir} /src/main/java</sourceDirectory >
192
+ <outputDirectory >${project.build.directory} /delombok</outputDirectory >
193
+ </configuration >
194
+ </execution >
195
+ </executions >
196
+ </plugin >
176
197
<plugin >
177
198
<groupId >org.apache.maven.plugins</groupId >
178
199
<artifactId >maven-source-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments