Shinji Kashihara

Results 36 comments of Shinji Kashihara

Cause: ```ini converter : com.thoughtworks.xstream.converters.reflection.SerializableConverter message[1] : Unable to make private void java.beans.PropertyChangeSupport.readObject(java.io.ObjectInputStream) throws java.lang.ClassNotFoundException,java.io.IOException accessible: module java.desktop does not "opens java.beans" to unnamed module ``` You can work around...

The task can be executed correctly by setting the following in `build.gradle`. ```gradle application { mainClass = '...' applicationDefaultJvmArgs = ['-Dstdout.encoding=UTF-8', '-Dstderr.encoding=UTF-8'] } ``` However, if you run it in...

Although it may not be a solution, Java encoding can be specified in `settings.json`. However, in this case, characters will be garbled when executing the command in the terminal. What...

Is it possible to change the `maven.executable.path` from `machine` to `machine-overridable` as the related setting `maven.executable.path` cannot also be overridden in a workspace? package.json ```json "maven.executable.path": { "type": "string", "scope":...

If it is difficult to set the default value of `applicationDefaultJvmArgs` to `-Dstdout.encoding=UTF-8 -Dstderr...`, I think it would be useful to be able to pass `applicationDefaultJvmArgs` as an argument to...

On macOS, the following solved the problem. The following JAVA_HOME takes precedence over the OS JAVA_HOME environment variable. ```json "maven.terminal.customEnv": [ { "environmentVariable": "JAVA_HOME", "value": "/xxx/java/21" }, { "environmentVariable": "ZDOTDIR",...

Related Issue: [#991 Change the scope of maven.terminal.customEnv to machine-overridable](https://github.com/microsoft/vscode-maven/issues/991)

Another ways to ignore the system's JAVA_HOME env var. # macOS `settings.json` ```json "maven.terminal.customEnv": [ { "environmentVariable": "JAVA_HOME", "value": "/xxx/java/21" }, { "environmentVariable": "ZDOTDIR", "value": "/xxx/rcdir" } ], ``` `/xxx/rcdir/.zshrc`...

JDT will give priority to Javadoc in the source even if a Javadoc URL is specified. https://bugs.eclipse.org/bugs/show_bug.cgi?id=549029