Eclipse创建maven工程后没有build path解决方案

Posted coshaho

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse创建maven工程后没有build path解决方案相关的知识,希望对你有一定的参考价值。

1、修改maven工程下的.project文件为如下内容

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
    <name>Coshaho</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
        <buildCommand>
            <name>org.eclipse.jdt.core.javabuilder</name>
            <arguments>
            </arguments>
        </buildCommand>
        <buildCommand>
            <name>org.eclipse.m2e.core.maven2Builder</name>
            <arguments>
            </arguments>
        </buildCommand>
    </buildSpec>
    <natures>
        <nature>org.eclipse.jdt.core.javanature</nature>
        <nature>org.eclipse.m2e.core.maven2Nature</nature>
    </natures>
</projectDescription>

2、添加.classpath文件

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" output="target/classes" path="src/main/java">
        <attributes>
            <attribute name="optional" value="true"/>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    
    <classpathentry kind="src" output="target/test-classes" path="src/test/java">
        <attributes>
            <attribute name="optional" value="true"/>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    
    <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
        <attributes>
            <attribute name="maven.pomderived" value="true"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    <classpathentry kind="output" path="target/classes"/>
</classpath>

 

以上是关于Eclipse创建maven工程后没有build path解决方案的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse集成Maven后,右键项目 Run as 中没有Maven相关的命令

gradle/maven/eclipse工程相互转化

基于eclipse创建maven工程

将WEB工程转换为Maven工程(eclipse)

maven工程开始

eclipse中java build path下 allow output folders for source folders 无法勾选,该如何解决 eclipse中java build path下