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
util.check_ouput("Virtual filesystem is deployed to default resources directory", out, contains=use_default_vfs_path)
119
+
util.check_ouput("This can cause conflicts if used with other Java libraries that also deploy GraalPy virtual filesystem.", out, contains=use_default_vfs_path)
Copy file name to clipboardExpand all lines: graalpython/graalpy-maven-plugin/src/main/java/org/graalvm/python/maven/plugin/ManageResourcesMojo.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ public void execute() throws MojoExecutionException {
145
145
}
146
146
147
147
if (resourceDirectory == null) {
148
-
if (externalDirectory!= null) {
148
+
if (externalDirectory== null) {
149
149
getLog().info(String.format("Virtual filesystem is deployed to default resources directory '%s'. " +
150
150
"This can cause conflicts if used with other Java libraries that also deploy GraalPy virtual filesystem. " +
151
151
"Consider adding <resourceDirectory>GRAALPY-VFS/${project.groupId}/${project.artifactId}</resourceDirectory> to your pom.xml, " +
@@ -162,7 +162,7 @@ public void execute() throws MojoExecutionException {
162
162
getLog().warn("The GraalPy plugin <pythonHome> configuration setting was deprecated and has no effect anymore.\n" +
163
163
"For execution in jvm mode, the python language home is always available.\n" +
164
164
"When building a native executable using GraalVM Native Image, then the full python language home is by default embedded into the native executable.\n" +
165
-
"For more details, please refer to the documentation of GraalVM Native Image options IncludeLanguageResources and CopyLanguageResources documentation.");
165
+
"For more details, please refer to the documentation of GraalVM Native Image options IncludeLanguageResources and CopyLanguageResources.");
t.getLogger().warn("The GraalPy plugin pythonHome configuration setting was deprecated and has no effect anymore.\n" +
193
193
"For execution in jvm mode, the python language home is always available.\n" +
194
194
"When building a native executable using GraalVM Native Image, then the full python language home is by default embedded into the native executable.\n" +
195
-
"For more details, please refer to the documentation of GraalVM Native Image options IncludeLanguageResources and CopyLanguageResources documentation.");
195
+
"For more details, please refer to the documentation of GraalVM Native Image options IncludeLanguageResources and CopyLanguageResources.");
0 commit comments