You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Gathers configuration files from specified directories without having to provide each
48
49
* configuration file individually.
49
50
*/
50
51
publicfinalclassConfigurationFiles {
51
52
52
53
publicstaticfinalclassOptions {
54
+
53
55
@Option(help = "Directories directly containing configuration files for dynamic features at runtime.", type = OptionType.User, stability = OptionStability.STABLE)//
@Option(help = {"Resources describing program elements to be made available for reflection (see ReflectionConfigurationFiles).",
64
-
"Use a reflect-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
66
+
@Option(help = "Resources describing program elements to be made available for reflection (see ReflectionConfigurationFiles).", type = OptionType.User)//
@Option(help = {"Resources describing program elements to be made available for serialization (see SerializationConfigurationFiles).",
78
-
"Use a serialization-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
80
+
@Option(help = "Resources describing program elements to be made available for serialization (see SerializationConfigurationFiles).", type = OptionType.User)//
"Use a resource-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
91
+
@OptionMigrationMessage("Use a resource-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead.")//
92
+
@Option(help = "Files describing Java resources to be included in the image according to the schema at " +
93
+
"https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/resource-config-schema-v1.0.0.json", type = OptionType.User)//
"Use a resource-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
96
+
@Option(help = "Resources describing Java resources to be included in the image according to the schema at " +
97
+
"https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/resource-config-schema-v1.0.0.json", type = OptionType.User)//
"Use a jni-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
100
+
@OptionMigrationMessage("Use a jni-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead.")//
101
+
@Option(help = "Files describing program elements to be made accessible via JNI according to the schema at " +
102
+
"https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/jni-config-schema-v1.1.0.json", type = OptionType.User)//
"Use a jni-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
105
+
@Option(help = "Resources describing program elements to be made accessible via JNI according to the schema at " +
106
+
"https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/jni-config-schema-v1.1.0.json", type = OptionType.User)//
"Use a predefined-classes-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
115
+
@OptionMigrationMessage("Use a predefined-classes-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead.")//
116
+
@Option(help = "Files describing predefined classes that can be loaded at runtime according to the schema at " +
117
+
"https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/predefined-classes-config-schema-v1.0.0.json", type = OptionType.User)//
"Use a predefined-classes-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead."}, type = OptionType.User)//
120
+
@Option(help = "Resources describing predefined classes that can be loaded at runtime according to the schema at " +
121
+
"https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/predefined-classes-config-schema-v1.0.0.json", type = OptionType.User)//
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/configure/doc-files/ProxyConfigurationFilesHelp.txt
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
1
One or several (comma-separated) paths to JSON files that specify lists of interfaces that define Java proxy classes.
2
-
Use a proxy-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead.
3
2
4
3
The JSON structure is described in the following schema:
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/configure/doc-files/ReflectionConfigurationFilesHelp.txt
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
1
One or several (comma-separated) paths to JSON files that specify which program elements should be made available via reflection.
2
-
Use a reflect-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead.
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/configure/doc-files/SerializationConfigurationFilesHelp.txt
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
1
One or several (comma-separated) paths to JSON files that specify lists of serialization configurations.
2
-
Use a serialization-config.json in your META-INF/native-image/<groupID>/<artifactID> directory instead.
3
2
4
3
The structure is described in the following schema:
0 commit comments