1

该项目的当前默认性质是' org.eclipse.jdt.core.javanature '(Java性质)但我想将项目的默认性质更改为org.nodeclipse.ui.NodeNature '(nodejs)。

我应该在 maven 原型中的哪个位置以及在哪个阶段指定这个插件。

https://maven.apache.org/plugins/maven-eclipse-plugin/examples/provide-project-natures-and-build-commands.html

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <version>2.9</version>
            <configuration>

                <projectnature>org.nodeclipse.ui.NodeNature</projectnature>
                <projectnature>org.eclipse.wst.jsdt.core.jsNature</projectnature>
                <projectnature>tern.eclipse.ide.core.ternnature</projectnature>

                <buildcommand>com.eclipsesource.jshint.ui.builder</buildcommand>


            </configuration>
        </plugin>
    </plugins>

</build>

它不适合我。有什么想法吗?

谢谢

4

1 回答 1

0

看起来您想用 Node 替换 Java Nature。AFAICT,引用的页面提供了通过 pom自然添加到默认值的说明。默认值在 .project 文件中定义...将该文件中的“buildspec”和“natures”标签替换为:

    <buildSpec>
            <buildCommand>
                    <name>com.eclipsesource.jshint.ui.builder</name>
                    <arguments>
                    </arguments>
            </buildCommand>
    </buildSpec>
    <natures>
            <nature>org.nodeclipse.ui.NodeNature</nature>
            <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
            <nature>tern.eclipse.ide.core.ternnature</nature>
    </natures>

您可能还需要将 .jshintrc 文件添加到项目的根目录,但我认为您可以在 Preferences -> JSHint 面板中构建它

于 2015-06-24T21:34:54.817 回答