Eclipse构建不起作用

时间:2012-02-14 17:06:04

标签: eclipse git workspace

我已经使用maven布局设置了eclipse项目。我还启用了maven依赖管理(使用m2eclipse)。我可以从日食菜单中运行测试。

现在,我已经在我的项目中初始化了一个git存储库(eclipse外部没有插件),我已经提交了.gitignore和pom.xml文件

的.gitignore

*.pydevproject
.project
.metadata
bin/**
target/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

现在我已经创建了一个新的分支并将其检查出来。现在我的autobuild停止工作了。 eclipse菜单仍然显示“自动构建”,如勾选。

我不是这里出了什么问题。 有什么东西我不见了吗?

1 个答案:

答案 0 :(得分:1)

评论中的OP Varun Naik报告:

  

似乎当我在m2eclipse中“启用依赖”时,自动构建停止工作

这似乎表明项目配置不再与Maven项目同步:

  

似乎我的项目配置以某种方式更新了   我右键点击Project -> Maven->Update Project Conf,现在一切都恢复正常了。

这类似于问题“maven-archetype-webapp eclipse problem”。