Skip to content

Commit

Permalink
Merge pull request #15233 from geoand/#15208
Browse files Browse the repository at this point in the history
Add native-source package type
  • Loading branch information
geoand authored Feb 23, 2021
2 parents 11104b5 + f831d60 commit dfab7d9
Show file tree
Hide file tree
Showing 5 changed files with 380 additions and 180 deletions.
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

0 comments on commit dfab7d9

Please sign in to comment.