Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add native-source package type #15233

Merged
merged 1 commit into from
Feb 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ public class PackageConfig {
public static final String LEGACY = "legacy";
public static final String LEGACY_JAR = "legacy-jar";
public static final String NATIVE = "native";
// does everything 'native' but stops short of actually executing the 'native-image' command
public static final String NATIVE_SOURCES = "native-sources";

/**
* The requested output type.
* <p>
* The default built in types are 'jar' (which will use 'fast-jar'), 'legacy-jar' for the pre-1.12 default jar
* packaging, 'uber-jar' and 'native'.
* packaging, 'uber-jar', 'native' and 'native-sources'.
*/
@ConfigItem(defaultValue = JAR)
public String type;
Expand Down
Loading