无法访问项目中的 运行 设置:netbeans 13 中的简单 Javafx maven 原型(gluon)

Can't acces to run settings in project :Simple Javafx maven archetype(gluon) in netbeans 13

我正在尝试更改 netbeans 13 中的 vm 选项,但我无法在 运行 设置中更改任何内容。 运行 设置底部会引发警告:Run/Debug/Profile 项目操作之一已被修改,运行 面板无法安全编辑。 几乎所有其他工作正常:可以编译 javafx 应用程序和 运行。 java 中的自动完成功能在 javafx 库中运行良好。

openjfx 版本 17.0.2

javafx maven 插件版本 0.0.8

jdk coretto 17 在 ubuntu 20.4 64

netbeans 13 上的 gluon 插件 2.8.4

pom文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com</groupId>
    <artifactId>mavenproject7</artifactId>
    <version>1.0-SNAPSHOT</version>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>17.0.2</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <release>11</release>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.openjfx</groupId>
                <artifactId>javafx-maven-plugin</artifactId>
                <version>0.0.8</version>
                <configuration>
                    <mainClass>com.mavenproject7.App</mainClass>
                </configuration>
                <executions>
                    <execution>
                        <!-- Default configuration for running -->
                        <!-- Usage: mvn clean javafx:run -->
                        <id>default-cli</id>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
 

重置操作 运行、调试、配置文件

在项目属性 >> 操作中 select 运行 项目 ,调试项目Profile Project 然后点击 Remove/Reset 按钮。这将允许更改 运行 类别中的选项。添加 javafx 模块,需要它们到 vm 的路径才能 运行 并编译 javafx 项目 --add-modules javafx.controls,javafx.base,javafx.graphics --module-path /...path-to-modules。关注线程,您将在 [=12] 找到解决方法=]