File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 98
98
<phase >verify</phase >
99
99
<configuration >
100
100
<target >
101
- <exec executable =" mvn " failonerror =" true" >
101
+ <exec executable =" ${maven.executable} " failonerror =" true" >
102
102
<arg value =" test" />
103
103
<arg value =" -Pjava-jdk8on,test" />
104
104
</exec >
Original file line number Diff line number Diff line change 102
102
<phase >verify</phase >
103
103
<configuration >
104
104
<target >
105
- <exec executable =" mvn " failonerror =" true" >
105
+ <exec executable =" ${maven.executable} " failonerror =" true" >
106
106
<arg value =" test" />
107
107
<arg value =" -Pjava-jdk8on,test" />
108
108
</exec >
Original file line number Diff line number Diff line change 36
36
<poi5-version >${poi-version} </poi5-version >
37
37
<kotlin .version>2.2.10</kotlin .version>
38
38
<quarkus-version >3.26.3</quarkus-version >
39
+ <!-- for backward compatibility test -->
40
+ <maven .executable>mvn</maven .executable>
41
+ <maven .executable.windows>mvn.cmd</maven .executable.windows>
39
42
</properties >
40
43
41
44
<licenses >
355
358
<url >https://www.fugerit.org</url >
356
359
<name >Fugerit</name >
357
360
</organization >
361
+
362
+ <profiles >
363
+ <profile >
364
+
365
+ <id >windowsSetup</id >
366
+
367
+ <activation >
368
+ <os >
369
+ <family >Windows</family >
370
+ </os >
371
+ </activation >
372
+
373
+ <properties >
374
+ <maven .executable>${maven.executable.windows} </maven .executable>
375
+ </properties >
376
+
377
+ </profile >
378
+ </profiles >
358
379
359
380
</project >
You can’t perform that action at this time.
0 commit comments