-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added preliminary support for bundling jre in mac app bundleJVM: true is the property in the jdeploy object of package.json to make this happen. Addd integration test for this. * added support for custom jdeployHome. Added integration test for launcher * attempt to fix pipeline test * added better logging for integration test * more debug logging * list files in bundles if failed to find bundle in integration test * attempt to fix launcher integration test * fixed launcher test on windows * updated windows launcher with fix for move command * pinned snapcodejava test to version 2024.7.13 so tests don't break when app is updated * added tests for bundled JRE and codesigning launcher on mac --------- Co-authored-by: Steve Hannah <[email protected]>
- Loading branch information
Showing
48 changed files
with
1,663 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<app | ||
package="snapcodejava" | ||
version="latest" | ||
version="2024.7.13" | ||
title="Snapcode Java" | ||
fork="false" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
shared/src/main/java/ca/weblite/jdeploy/app/JVMSpecification.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package ca.weblite.jdeploy.app; | ||
|
||
public class JVMSpecification { | ||
public int javaVersion; | ||
public boolean jdk; | ||
public boolean javafx; | ||
} |
Oops, something went wrong.