Skip to content

Commit 83a458c

Browse files
author
Andy Herrick
committedJul 13, 2020
8247779: Remove deprecated --bind-services option from jpackage
Reviewed-by: asemenyuk, almatvee
1 parent 5146474 commit 83a458c

File tree

9 files changed

+4
-43
lines changed

9 files changed

+4
-43
lines changed
 

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/Arguments.java

-14
Original file line numberDiff line numberDiff line change
@@ -296,11 +296,6 @@ public enum CLIOptions {
296296

297297
MODULE_PATH ("module-path", "p", OptionCategories.MODULAR),
298298

299-
BIND_SERVICES ("bind-services", OptionCategories.PROPERTY, () -> {
300-
showDeprecation("bind-services");
301-
setOptionValue("bind-services", true);
302-
}),
303-
304299
MAC_SIGN ("mac-sign", "s", OptionCategories.PLATFORM_MAC, () -> {
305300
setOptionValue("mac-sign", true);
306301
}),
@@ -606,11 +601,6 @@ private void validateArguments() throws PackagerException {
606601
CLIOptions.PREDEFINED_RUNTIME_IMAGE.getIdWithPrefix(),
607602
CLIOptions.ADD_MODULES.getIdWithPrefix());
608603
}
609-
if (allOptions.contains(CLIOptions.BIND_SERVICES)) {
610-
throw new PackagerException("ERR_MutuallyExclusiveOptions",
611-
CLIOptions.PREDEFINED_RUNTIME_IMAGE.getIdWithPrefix(),
612-
CLIOptions.BIND_SERVICES.getIdWithPrefix());
613-
}
614604
if (allOptions.contains(CLIOptions.JLINK_OPTIONS)) {
615605
throw new PackagerException("ERR_MutuallyExclusiveOptions",
616606
CLIOptions.PREDEFINED_RUNTIME_IMAGE.getIdWithPrefix(),
@@ -822,8 +812,4 @@ private String getMainClassFromManifest() {
822812
return null;
823813
}
824814

825-
private static void showDeprecation(String option) {
826-
Log.error(MessageFormat.format(I18N.getString("warning.deprecation"),
827-
option));
828-
}
829815
}

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/JLinkBundlerHelper.java

+2-9
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ static void execute(Map<String, ? super Object> params, Path outputDir)
6767
LauncherData launcherData = StandardBundlerParam.LAUNCHER_DATA.fetchFrom(
6868
params);
6969

70-
boolean bindServices =
71-
StandardBundlerParam.BIND_SERVICES.fetchFrom(params);
72-
7370
// Modules
7471
if (!launcherData.isModular() && addModules.isEmpty()) {
7572
addModules.add(ALL_DEFAULT);
@@ -81,8 +78,7 @@ static void execute(Map<String, ? super Object> params, Path outputDir)
8178
modules.add(launcherData.moduleName());
8279
}
8380

84-
runJLink(outputDir, modulePath, modules, limitModules,
85-
options, bindServices);
81+
runJLink(outputDir, modulePath, modules, limitModules, options);
8682
}
8783

8884
/*
@@ -160,7 +156,7 @@ private static Set<String> createModuleList(List<Path> paths,
160156

161157
private static void runJLink(Path output, List<Path> modulePath,
162158
Set<String> modules, Set<String> limitModules,
163-
List<String> options, boolean bindServices)
159+
List<String> options)
164160
throws PackagerException, IOException {
165161

166162
ArrayList<String> args = new ArrayList<String>();
@@ -188,9 +184,6 @@ private static void runJLink(Path output, List<Path> modulePath,
188184
args.add(option);
189185
}
190186
}
191-
if (bindServices) {
192-
args.add("--bind-services");
193-
}
194187

195188
StringWriter writer = new StringWriter();
196189
PrintWriter pw = new PrintWriter(writer);

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/StandardBundlerParam.java

-10
Original file line numberDiff line numberDiff line change
@@ -259,16 +259,6 @@ class StandardBundlerParam<T> extends BundlerParamInfo<T> {
259259
(s, p) -> null
260260
);
261261

262-
static final StandardBundlerParam<Boolean> BIND_SERVICES =
263-
new StandardBundlerParam<>(
264-
Arguments.CLIOptions.BIND_SERVICES.getId(),
265-
Boolean.class,
266-
params -> false,
267-
(s, p) -> (s == null || "null".equalsIgnoreCase(s)) ?
268-
true : Boolean.valueOf(s)
269-
);
270-
271-
272262
static final StandardBundlerParam<Boolean> VERBOSE =
273263
new StandardBundlerParam<>(
274264
Arguments.CLIOptions.VERBOSE.getId(),

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/ValidOptions.java

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ enum USE {
8181
options.put(CLIOptions.ARGUMENTS.getId(), USE.LAUNCHER);
8282
options.put(CLIOptions.JAVA_OPTIONS.getId(), USE.LAUNCHER);
8383
options.put(CLIOptions.ADD_LAUNCHER.getId(), USE.LAUNCHER);
84-
options.put(CLIOptions.BIND_SERVICES.getId(), USE.LAUNCHER);
8584
options.put(CLIOptions.JLINK_OPTIONS.getId(), USE.LAUNCHER);
8685

8786
options.put(CLIOptions.LICENSE_FILE.getId(), USE.INSTALL);

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/resources/HelpResources.properties

-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,6 @@ Generic Options:\n\
104104
\ modular jar.\n\
105105
\ (each path is absolute or relative to the current directory)\n\
106106
\ This option can be used multiple times.\n\
107-
\ --bind-services \n\
108-
\ Pass on --bind-services option to jlink (which will link in \n\
109-
\ service provider modules and their dependences) \n\
110-
\ This option is deprecated. Use "--jlink-options" option instead. \n\
111107
\ --jlink-options <jlink options> \n\
112108
\ A space separated list of options to pass to jlink \n\
113109
\ If not specified, defaults to "--strip-native-commands \n\

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/resources/MainResources.properties

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ error.jlink.failed=jlink failed with: {0}
7474
error.blocked.option=jlink option [{0}] is not permitted in --jlink-options
7575

7676
warning.no.jdk.modules.found=Warning: No JDK Modules found
77-
warning.deprecation=Warning: Option "{0}" is deprecated and may be removed in a future release
7877

7978
MSG_BundlerFailed=Error: Bundler "{1}" ({0}) failed to produce a package
8079
MSG_BundlerConfigException=Bundler {0} skipped because of a configuration problem: {1} \n\

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/resources/MainResources_ja.properties

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ error.jlink.failed=jlink\u304C\u6B21\u3067\u5931\u6557\u3057\u307E\u3057\u305F:
7474
error.blocked.option=jlink\u30AA\u30D7\u30B7\u30E7\u30F3[{0}]\u306F--jlink-options\u3067\u306F\u8A31\u53EF\u3055\u308C\u307E\u305B\u3093
7575

7676
warning.no.jdk.modules.found=\u8B66\u544A: JDK\u30E2\u30B8\u30E5\u30FC\u30EB\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093
77-
warning.deprecation=\u8B66\u544A: \u30AA\u30D7\u30B7\u30E7\u30F3"{0}"\u306F\u975E\u63A8\u5968\u3067\u3042\u308A\u3001\u5C06\u6765\u306E\u30EA\u30EA\u30FC\u30B9\u3067\u524A\u9664\u3055\u308C\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059
7877

7978
MSG_BundlerFailed=\u30A8\u30E9\u30FC: \u30D0\u30F3\u30C9\u30E9"{1}" ({0})\u304C\u30D1\u30C3\u30B1\u30FC\u30B8\u306E\u751F\u6210\u306B\u5931\u6557\u3057\u307E\u3057\u305F
8079
MSG_BundlerConfigException=\u69CB\u6210\u306E\u554F\u984C\u306E\u305F\u3081\u3001\u30D0\u30F3\u30C9\u30E9{0}\u304C\u30B9\u30AD\u30C3\u30D7\u3055\u308C\u307E\u3057\u305F: {1} \n\u6B21\u306E\u4FEE\u6B63\u3092\u884C\u3063\u3066\u304F\u3060\u3055\u3044: {2}

‎src/jdk.incubator.jpackage/share/classes/jdk/incubator/jpackage/internal/resources/MainResources_zh_CN.properties

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ error.jlink.failed=jlink \u5931\u8D25\uFF0C\u51FA\u73B0 {0}
7474
error.blocked.option=\u4E0D\u5141\u8BB8\u5728 --jlink-options \u4E2D\u4F7F\u7528 jlink \u9009\u9879 [{0}]
7575

7676
warning.no.jdk.modules.found=\u8B66\u544A: \u672A\u627E\u5230 JDK \u6A21\u5757
77-
warning.deprecation=\u8B66\u544A\uFF1A\u9009\u9879 "{0}" \u5DF2\u8FC7\u65F6\uFF0C\u5728\u5C06\u6765\u7684\u53D1\u884C\u7248\u4E2D\u53EF\u80FD\u4F1A\u88AB\u5220\u9664
7877

7978
MSG_BundlerFailed=\u9519\u8BEF\uFF1A\u6253\u5305\u7A0B\u5E8F "{1}" ({0}) \u65E0\u6CD5\u751F\u6210\u7A0B\u5E8F\u5305
8079
MSG_BundlerConfigException=\u7531\u4E8E\u914D\u7F6E\u95EE\u9898, \u8DF3\u8FC7\u4E86\u6253\u5305\u7A0B\u5E8F{0}: {1} \n\u4FEE\u590D\u5EFA\u8BAE: {2}

‎test/jdk/tools/jpackage/share/jdk/jpackage/tests/JLinkOptionsTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,8 @@ public static Collection input() {
7575
null,
7676
},
7777

78-
// bind-services and jpackage option --bind-services (deprecated)
78+
// jlink-options --bind-services
7979
{"com.other/com.other.Hello", new String[]{
80-
"--bind-services",
8180
"--jlink-options", "--bind-services",
8281
},
8382
// with bind-services should have some services
@@ -98,6 +97,7 @@ public static Collection input() {
9897

9998
// bind-services and limit-options
10099
{"com.other/com.other.Hello", new String[]{
100+
"--jlink-options",
101101
"--bind-services",
102102
"--jlink-options",
103103
"--limit-modules java.base,java.datatransfer,java.xml,java.prefs,java.desktop,com.other,java.smartcardio",

0 commit comments

Comments
 (0)
Please sign in to comment.