< prev index next >

src/jdk.incubator.jpackage/macosx/classes/jdk/incubator/jpackage/internal/MacAppStoreBundler.java

Print this page

        

*** 39,51 **** private static final ResourceBundle I18N = ResourceBundle.getBundle( "jdk.incubator.jpackage.internal.resources.MacResources"); private static final String TEMPLATE_BUNDLE_ICON_HIDPI = "java.icns"; private final static String DEFAULT_ENTITLEMENTS = ! "MacAppStore.entitlements"; private final static String DEFAULT_INHERIT_ENTITLEMENTS = ! "MacAppStore_Inherit.entitlements"; public static final BundlerParamInfo<String> MAC_APP_STORE_APP_SIGNING_KEY = new StandardBundlerParam<>( "mac.signing-key-app", String.class, --- 39,51 ---- private static final ResourceBundle I18N = ResourceBundle.getBundle( "jdk.incubator.jpackage.internal.resources.MacResources"); private static final String TEMPLATE_BUNDLE_ICON_HIDPI = "java.icns"; private final static String DEFAULT_ENTITLEMENTS = ! "Mac.entitlements"; private final static String DEFAULT_INHERIT_ENTITLEMENTS = ! "Mac_Inherit.entitlements"; public static final BundlerParamInfo<String> MAC_APP_STORE_APP_SIGNING_KEY = new StandardBundlerParam<>( "mac.signing-key-app", String.class,
*** 92,108 **** return result; }, (s, p) -> s); ! public static final StandardBundlerParam<File> MAC_APP_STORE_ENTITLEMENTS = new StandardBundlerParam<>( ! Arguments.CLIOptions.MAC_APP_STORE_ENTITLEMENTS.getId(), File.class, params -> null, (s, p) -> new File(s)); public static final BundlerParamInfo<String> INSTALLER_SUFFIX = new StandardBundlerParam<> ( "mac.app-store.installerName.suffix", String.class, params -> "-MacAppStore", --- 92,117 ---- return result; }, (s, p) -> s); ! /* ! public static final StandardBundlerParam<File> MAC_ENTITLEMENTS = new StandardBundlerParam<>( ! Arguments.CLIOptions.MAC_ENTITLEMENTS.getId(), File.class, params -> null, (s, p) -> new File(s)); + public static final StandardBundlerParam<File> MAC_INHERIT_ENTITLEMENTS = + new StandardBundlerParam<>( + Arguments.CLIOptions.MAC_INHERIT_ENTITLEMENTS.getId(), + File.class, + params -> null, + (s, p) -> new File(s)); + */ + public static final BundlerParamInfo<String> INSTALLER_SUFFIX = new StandardBundlerParam<> ( "mac.app-store.installerName.suffix", String.class, params -> "-MacAppStore",
*** 201,218 **** private void prepareEntitlements(Map<String, ? super Object> params) throws IOException { createResource(DEFAULT_ENTITLEMENTS, params) .setCategory( ! I18N.getString("resource.mac-app-store-entitlements")) ! .setExternal(MAC_APP_STORE_ENTITLEMENTS.fetchFrom(params)) .saveToFile(getConfig_Entitlements(params)); createResource(DEFAULT_INHERIT_ENTITLEMENTS, params) .setCategory(I18N.getString( ! "resource.mac-app-store-inherit-entitlements")) ! .saveToFile(getConfig_Entitlements(params)); } /////////////////////////////////////////////////////////////////////// // Implement Bundler /////////////////////////////////////////////////////////////////////// --- 210,228 ---- private void prepareEntitlements(Map<String, ? super Object> params) throws IOException { createResource(DEFAULT_ENTITLEMENTS, params) .setCategory( ! I18N.getString("resource.mac-entitlements")) ! // .setExternal(MAC_ENTITLEMENTS.fetchFrom(params)) .saveToFile(getConfig_Entitlements(params)); createResource(DEFAULT_INHERIT_ENTITLEMENTS, params) .setCategory(I18N.getString( ! "resource.mac-inherit-entitlements")) ! // .setExternal(MAC_INHERIT_ENTITLEMENTS.fetchFrom(params)) ! .saveToFile(getConfig_Inherit_Entitlements(params)); } /////////////////////////////////////////////////////////////////////// // Implement Bundler ///////////////////////////////////////////////////////////////////////
< prev index next >