File tree 1 file changed +37
-3
lines changed
1 file changed +37
-3
lines changed Original file line number Diff line number Diff line change 875
875
<artifactId >maven-compiler-plugin</artifactId >
876
876
<version >${compiler.plugin.version} </version >
877
877
<configuration >
878
- <source >${java.version} </source >
879
- <target >${java.version} </target >
880
878
<showDeprecation >true</showDeprecation >
881
879
<showWarnings >true</showWarnings >
882
880
<debug >false</debug >
1263
1261
</activation >
1264
1262
<build >
1265
1263
<plugins >
1266
- <!-- Required for ErrorProne -->
1267
1264
<plugin >
1268
1265
<groupId >org.apache.maven.plugins</groupId >
1269
1266
<artifactId >maven-compiler-plugin</artifactId >
1270
1267
<configuration >
1268
+ <source >${java.version} </source >
1269
+ <target >${java.version} </target >
1270
+ <!-- Required for ErrorProne -->
1271
1271
<fork >true</fork >
1272
1272
<compilerArgs combine.children=" append" >
1273
1273
<compilerArg >
1279
1279
</plugins >
1280
1280
</build >
1281
1281
</profile >
1282
+ <profile >
1283
+ <id >jdk11</id >
1284
+ <activation >
1285
+ <jdk >11</jdk >
1286
+ </activation >
1287
+ <build >
1288
+ <plugins >
1289
+ <plugin >
1290
+ <groupId >org.apache.maven.plugins</groupId >
1291
+ <artifactId >maven-compiler-plugin</artifactId >
1292
+ <configuration >
1293
+ <release >11</release >
1294
+ </configuration >
1295
+ </plugin >
1296
+ </plugins >
1297
+ </build >
1298
+ </profile >
1299
+ <profile >
1300
+ <id >jdk17</id >
1301
+ <activation >
1302
+ <jdk >17</jdk >
1303
+ </activation >
1304
+ <build >
1305
+ <plugins >
1306
+ <plugin >
1307
+ <groupId >org.apache.maven.plugins</groupId >
1308
+ <artifactId >maven-compiler-plugin</artifactId >
1309
+ <configuration >
1310
+ <release >17</release >
1311
+ </configuration >
1312
+ </plugin >
1313
+ </plugins >
1314
+ </build >
1315
+ </profile >
1282
1316
<profile >
1283
1317
<id >frontend</id >
1284
1318
<activation >
You can’t perform that action at this time.
0 commit comments