我决定不在我的项目中使用 maven。所以,我在 Eclipse 中右键单击它,然后“删除 maven nature”。一切似乎都很好,但我无法删除目标目录。如果我从 Eclipse 中删除它,它只是再次创建,如果我从 Explorer 中删除它,结果是一样的,只要我从 Eclipse 中清理我的项目,它就会再次创建。
我哪里错了?
提前致谢。
Maven->Disable Dependency Management.
Build Path-> Configure Build Path -> Source Tab
。取消勾选“允许源文件夹的输出文件夹”试试这个:右键单击项目文件夹 -> 属性 -> Java 构建路径 -> '默认输出文件夹:'部分中的源更改文件夹以指向新位置。
target/classes
目录和其他任何目录一样好。由于 m2e 切换了这个,它是 Maven 标准输出目录,不再由 m2e 相关或处理。如果需要,您可以按项目设置自己的输出目录Properties -> Java Build Path -> Source -> Default output folder
,例如设置bin
为 Eclipse 的默认目录。
Right click on you project. Go to Build Path--> Configure Build Path Uncheck Maven Dependencies, this made my target folder to work fine.