jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/resources/plugins.properties
author jlaskey
Fri, 24 Jun 2016 11:20:24 -0300
changeset 39150 cb99396625b4
parent 38451 a98523f5cbff
child 39491 504b835d71a8
permissions -rw-r--r--
8159172: Update usage of jlink/jimage/jmod to show option patterns Reviewed-by: mchung, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38451
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     1
#
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     2
# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     4
#
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    10
#
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    15
# accompanied this code).
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    16
#
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    17
# You should have received a copy of the GNU General Public License version
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    20
#
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    23
# questions.
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    24
#
a98523f5cbff 8157154: jmod jlink properties file need copyright header
chegar
parents: 37888
diff changeset
    25
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
release-info.argument=<file>|add:<key1>=<value1>:<key2>=<value2>:...|del:<key list>
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
release-info.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
<file> option is to load release properties from the supplied file.\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
add: is to add properties to the 'release' file.\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
Any number of <key>=<value> pairs can be passed.\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
del: is to delete the list of keys in release file.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
class-optim.argument=<all|forName-folding>[:log=<log file>]
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
class-optim.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
Class optimization. Warning: This plugin is experimental.\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
An optional <log file> can be specified to log applied optimizations.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    40
compress.argument=<0|1|2>[:filter=<pattern-list>]
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
compress.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
Compress all resources in the output image.\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
Level 0: constant string sharing\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
Level 1: ZIP\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
Level 2: both.\n\
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    47
An optional <pattern-list> filter can be specified to list the pattern of\n\
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    48
files to be included.
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    49
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
compact-cp.argument=<resource paths>
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
compact-cp.description=Constant Pool strings sharing.\n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
By default, all resources are compressed. You can express the set \n\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
of resources to compress or not compress (use ^ for negation).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
copy-files.argument=<List of <file path>=<image target> to copy to the image>.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
copy-files.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
If files to copy are not absolute path, JDK home dir is used.\n\
36739
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36666
diff changeset
    61
e.g.: jrt-fs.jar,LICENSE,/home/me/myfile.txt=somewehere/conf.txt
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    63
exclude-files.argument=<pattern-list> of files to exclude
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
exclude-files.description=\
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    66
Specify files to exclude. e.g.: **.java,glob:/java.base/native/client/**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    68
exclude-resources.argument=<pattern-list> resources to exclude
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
exclude-resources.description=\
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    71
Specify resources to exclude. e.g.: **.jcov,glob:**/META-INF/**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
36757
c859c6feee56 8152641: Plugin to generate BMH$Species classes ahead-of-time
redestad
parents: 36739
diff changeset
    73
generate-jli-classes.argument=<bmh[:bmh-species=LL,L3,...]>
c859c6feee56 8152641: Plugin to generate BMH$Species classes ahead-of-time
redestad
parents: 36739
diff changeset
    74
c859c6feee56 8152641: Plugin to generate BMH$Species classes ahead-of-time
redestad
parents: 36739
diff changeset
    75
generate-jli-classes.description=\
c859c6feee56 8152641: Plugin to generate BMH$Species classes ahead-of-time
redestad
parents: 36739
diff changeset
    76
Concrete java.lang.invoke classes to generate
c859c6feee56 8152641: Plugin to generate BMH$Species classes ahead-of-time
redestad
parents: 36739
diff changeset
    77
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
installed-modules.description=Fast loading of module descriptors (always enabled)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
onoff.argument=<on|off>
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    82
order-resources.argument=<pattern-list> of paths in priority order.  If a @file\n\
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    83
is specified, then each line should be an exact match for the path to be ordered
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
37888
c34e01b87292 8155237: jlink plugin to order resources should take a class list as input
jlaskey
parents: 37790
diff changeset
    85
order-resources.description=\
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38451
diff changeset
    86
Order resources. e.g.: **/module-info.class,@classlist,/java.base/java/lang/**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
strip-debug.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
Strip debug information from the output image
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
strip-native-commands.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
Exclude native commands (such as java/java.exe) from the image
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
vm.argument=<client|server|minimal|all>
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
vm.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
Select the HotSpot VM in the output image.  Default is all
37888
c34e01b87292 8155237: jlink plugin to order resources should take a class list as input
jlaskey
parents: 37790
diff changeset
    98
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
zip.argument=[comma separated list of resource paths]
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
zip.description=ZIP Compression
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
36666
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   103
include-locales.argument=\
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   104
<langtag>[,<langtag>]*
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
36666
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   106
include-locales.description=\
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   107
BCP 47 language tags separated by a comma, allowing locale matching\n\
36739
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36666
diff changeset
   108
defined in RFC 4647. e.g.: en,ja,*-IN
36666
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   109
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   110
include-locales.missingpackages=\
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   111
Missing locale data packages in jdk.localedata:\n\t
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   112
bf6dce37a2f0 8152143: jlink --include-locales should gracefully detect certain user error
naoto
parents: 36511
diff changeset
   113
include-locales.nomatchinglocales=\
36739
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36666
diff changeset
   114
No matching locales found for \"%s\". Check the specified pattern.
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36666
diff changeset
   115
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36666
diff changeset
   116
include-locales.invalidtag=\
145210aba850 8152704: jlink command line output/help message improvement
naoto
parents: 36666
diff changeset
   117
Invalid language tag: %s
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
37790
71c730d5e73a 8155649: IncludeLocalesPlugin throws NPE when jdk.localedata not resolved
naoto
parents: 36757
diff changeset
   119
include-locales.localedatanotfound=\
71c730d5e73a 8155649: IncludeLocalesPlugin throws NPE when jdk.localedata not resolved
naoto
parents: 36757
diff changeset
   120
jdk.localedata module was not specified with --addmods option
71c730d5e73a 8155649: IncludeLocalesPlugin throws NPE when jdk.localedata not resolved
naoto
parents: 36757
diff changeset
   121
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   122
main.status.ok=Functional.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   123
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   124
main.status.not.ok= Not functional.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   125
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   126
plugin.plugins.header=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   127
List of available plugin options:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   128
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   129
plugin.opt.list-plugins=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   130
\  --list-plugins                    List available plugins
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   131
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   132
plugin.opt.post-process-path=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   133
\  --post-process-path <imagefile>   Post process an existing image
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   134
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   135
plugin.opt.resources-last-sorter=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   136
\  --resources-last-sorter <name>    The last plugin allowed to sort resources
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   137
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   138
plugin.opt.plugins-modulepath=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   139
\  --plugin-module-path <modulepath> Custom plugins module path
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   140
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   141
plugin.opt.c=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
\  -c, --compress=2                  Enable compression of resources (level 2)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   144
plugin.opt.G=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   145
\  -G, --strip-debug                 Strip debug information
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   146
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   147
main.plugin.name=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   148
\Plugin Name
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   149
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   150
main.plugin.class=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   151
\Plugin Class
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   152
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   153
main.plugin.module=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
\Plugin Module
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
main.plugin.category=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
\Category
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
main.plugin.description=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   160
\Description
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   161
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   162
main.plugin.post.processors=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   163
Image Post Processors:
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   164
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   165
main.plugin.argument=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   166
\Argument
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   167
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   168
main.plugin.range.from=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   169
Range from
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   170
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   171
main.plugin.range.to=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   172
to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   174
main.plugin.option=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   175
\Option
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
main.plugin.no.value=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   178
\<empty>
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   179
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   180
main.plugin.state=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   181
Functional state
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   182
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   183
err.provider.not.functional=The provider {0} is not functional.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   184
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   185
err.plugin.mutiple.options=More than one plugin enabled by {0} option
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   186
err.provider.additional.arg.error=Error in additional argument specification in {0} option: {1}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   187
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   188
err.no.plugins.path=No plugins path argument.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   189
37888
c34e01b87292 8155237: jlink plugin to order resources should take a class list as input
jlaskey
parents: 37790
diff changeset
   190
err.dir.already.exits=directory already exists: {0}
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   191
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   192
err.invalid.index=invalid index for option {0}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   193
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   194
err.plugin.option.not.set=Option {0} must be set.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   195
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   196
warn.thirdparty.plugins=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   197
Enabling third party plugins can lead to unusable generated image.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   198
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   199
warn.thirdparty.plugins.enabled=\
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   200
You have enabled third party plugins.