我開始嘗試使用在線IDE,所以我開始使用Codenvy。我創建了一個工作空間和一個項目,並在下面的代碼中輸入了一個Hello World程序來測試IDE。Codenvy C++ Hello World程序不會構建?
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
它沒有正確構建。這是生成日誌說:
[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-readable POM /projects/Testing-CPP/pom.xml: /projects/Testing-CPP/pom.xml (No such file or directory) @
@
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project (/projects/Testing-CPP/pom.xml) has 1 error
[ERROR] Non-readable POM /projects/Testing-CPP/pom.xml: /projects/Testing-CPP/pom.xml (No such file or directory)
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
任何人都可以點我在正確的方向,以獲得IDE構建和運行我的代碼?