File tree Expand file tree Collapse file tree 5 files changed +55
-4
lines changed Expand file tree Collapse file tree 5 files changed +55
-4
lines changed Original file line number Diff line number Diff line change
1
+ module owasp .encoder {
2
+ exports org .owasp .encoder ;
3
+ }
Original file line number Diff line number Diff line change
1
+ module owasp .encoder .esapi {
2
+ requires owasp .encoder ;
3
+
4
+ exports org .owasp .encoder .esapi ;
5
+ }
Original file line number Diff line number Diff line change
1
+ module owasp .encoder .jakarta {
2
+ requires owasp .encoder ;
3
+
4
+ exports org .owasp .encoder .tag ;
5
+ }
Original file line number Diff line number Diff line change
1
+ module owasp .encoder .jsp {
2
+ requires owasp .encoder ;
3
+
4
+ exports org .owasp .encoder .tag ;
5
+ }
Original file line number Diff line number Diff line change 168
168
<plugin >
169
169
<groupId >org.apache.maven.plugins</groupId >
170
170
<artifactId >maven-jar-plugin</artifactId >
171
- <version >3.2.2 </version >
171
+ <version >3.3.0 </version >
172
172
</plugin >
173
173
<plugin >
174
174
<groupId >org.apache.maven.plugins</groupId >
242
242
<plugin >
243
243
<groupId >org.apache.felix</groupId >
244
244
<artifactId >maven-bundle-plugin</artifactId >
245
- <version >3.3.0 </version >
245
+ <version >3.5.1 </version >
246
246
</plugin >
247
247
<plugin >
248
248
<groupId >org.codehaus.mojo</groupId >
266
266
<plugin >
267
267
<groupId >org.apache.maven.plugins</groupId >
268
268
<artifactId >maven-compiler-plugin</artifactId >
269
+ <executions >
270
+ <execution >
271
+ <id >compile-java-8</id >
272
+ <goals >
273
+ <goal >compile</goal >
274
+ </goals >
275
+ <configuration >
276
+ <source >1.8</source >
277
+ <target >1.8</target >
278
+ </configuration >
279
+ </execution >
280
+ <execution >
281
+ <id >compile-java-9</id >
282
+ <phase >compile</phase >
283
+ <goals >
284
+ <goal >compile</goal >
285
+ </goals >
286
+ <configuration >
287
+ <release >9</release >
288
+ <compileSourceRoots >
289
+ <compileSourceRoot >${project.basedir} /src/main/java9</compileSourceRoot >
290
+ </compileSourceRoots >
291
+ <multiReleaseOutput >true</multiReleaseOutput >
292
+ </configuration >
293
+ </execution >
294
+ </executions >
295
+ </plugin >
296
+ <plugin >
297
+ <groupId >org.apache.maven.plugins</groupId >
298
+ <artifactId >maven-jar-plugin</artifactId >
269
299
<configuration >
270
- <source >1.8</source >
271
- <target >1.8</target >
300
+ <archive >
301
+ <manifestEntries >
302
+ <Multi-Release >true</Multi-Release >
303
+ </manifestEntries >
304
+ </archive >
272
305
</configuration >
273
306
</plugin >
274
307
<plugin >
You can’t perform that action at this time.
0 commit comments