File tree 1 file changed +21
-1
lines changed
1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 36
36
<assembly-suffix />
37
37
<executable-suffix />
38
38
<directory >${project.basedir}/target</directory >
39
- <skipCompress >true </skipCompress >
39
+ <skipCompress >false </skipCompress >
40
40
<maven .compiler.source>21</maven .compiler.source>
41
41
<maven .compiler.target>21</maven .compiler.target>
42
42
<project .build.sourceEncoding>utf-8</project .build.sourceEncoding>
294
294
</properties >
295
295
<build >
296
296
<plugins >
297
+ <plugin >
298
+ <groupId >org.codehaus.mojo</groupId >
299
+ <artifactId >exec-maven-plugin</artifactId >
300
+ <executions >
301
+ <execution >
302
+ <id >compress-binary</id >
303
+ <goals >
304
+ <goal >exec</goal >
305
+ </goals >
306
+ <phase >package</phase >
307
+ <configuration combine.self=" override" >
308
+ <executable >upx</executable >
309
+ <skip >true</skip >
310
+ <arguments >
311
+ <argument >${project.build.directory} /toolkit${executable-suffix} </argument >
312
+ </arguments >
313
+ </configuration >
314
+ </execution >
315
+ </executions >
316
+ </plugin >
297
317
<plugin >
298
318
<groupId >org.codehaus.mojo</groupId >
299
319
<artifactId >exec-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments