我以前从未在java或eclipse中编程,尽管我使用过c#和visual studio。
我正在尝试开始使用Java开发,并开发2D游戏,但我无法让项目运行。我按照这里的教程: http://cloningtheclassics.com/getting-started-with-pulpcore/ 我已经重试了这个教程至少5次,但仍然无法让它工作。
The error it displays is:
Buildfile: C:\workspace\javapulp\project\build.xml
[taskdef] Could not load definitions from resource tasks.properties. It could not be found.
[taskdef] Could not load definitions from resource tasks.properties. It could not be found.
-init:
BUILD FAILED
C:\workspace\javapulp\project\build.xml:127: Required file not found: ../../build/pulpcore-applet-debug-0.11.jar
Total time: 1 second
提前致谢!
编辑:我发现http://groups.google.com/group/pulpcore/web/pulpcore-templates-build-xml-eric-berry 我怎么运行这个?我该怎么办?答案 0 :(得分:2)
tasks.properties
文件。 ../../build/pulpcore-applet-debug-0.11.jar
和pulpcore-applet-debug-0.11.jar
should be copied in c:\workspace\library\pulpcore 0.11.3
“目录。c:\workspace\library\pulpcore 0.11.3
)是pulpcore.path
文件中的build.xml
属性。这两个问题往往表明您确实按照ant configuration section选择模板\项目文件夹下的build.xml
,然后尝试对其进行配置。
我建议您使用同一页面中提到的 sample build.xml
替换它,仔细检查路径并查看该build.xml
文件是否更有效。