File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ jobs:
255255 presto-cli/target/presto-cli-*-executable.jar
256256 presto-benchmark-driver/target/presto-benchmark-driver-*-executable.jar
257257 presto-testing-server-launcher/target/presto-testing-server-launcher-*-executable.jar
258+ presto-function-server/target/presto-function-server-*-executable.jar
258259
259260 publish-github-release :
260261 needs : publish-maven-artifacts
@@ -290,6 +291,7 @@ jobs:
290291 ./presto-cli/target/presto-cli-*-executable.jar
291292 ./presto-benchmark-driver/target/presto-benchmark-driver-*-executable.jar
292293 ./presto-testing-server-launcher/target/presto-testing-server-launcher-*-executable.jar
294+ ./presto-function-server/target/presto-function-server-*-executable.jar
293295
294296 publish-docker-image :
295297 needs : publish-maven-artifacts
@@ -334,6 +336,7 @@ jobs:
334336 run : |
335337 mv ./presto-server/target/presto-server-*.tar.gz docker/
336338 mv ./presto-cli/target/presto-cli-*-executable.jar docker/
339+ mv ./presto-function-server/target/presto-function-server-*-executable.jar docker/
337340
338341 - name : Build docker image and publish
339342 uses : docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
Original file line number Diff line number Diff line change 212212 </execution >
213213 </executions >
214214 </plugin >
215+ <plugin >
216+ <groupId >org.skife.maven</groupId >
217+ <artifactId >really-executable-jar-maven-plugin</artifactId >
218+ <configuration >
219+ <flags >-Xms128m</flags >
220+ <classifier >executable</classifier >
221+ </configuration >
222+ <executions >
223+ <execution >
224+ <phase >package</phase >
225+ <goals >
226+ <goal >really-executable-jar</goal >
227+ </goals >
228+ </execution >
229+ </executions >
230+ </plugin >
215231 </plugins >
216232 </build >
217233 </profile >
You can’t perform that action at this time.
0 commit comments