如何为Java Eclipse项目配置Travis CI构建测试?

时间:2017-02-17 02:02:55

标签: java eclipse ant continuous-integration travis-ci

我在GitHub上有一个Eclipse Java项目。我想用Travis CI设置自动构建测试。但是,当我为我的项目启用构建测试时,编译总是失败并出现以下错误。

Buildfile: build.xml does not exist!
Build failed

The command "ant test" exited with 1.

如何配置Travis CI为我的Java Eclipse项目运行构建测试?

1 个答案:

答案 0 :(得分:3)

最简单的方法是让Eclipse为您生成Ant构建脚本。

在Package Explorer中右键单击您的项目,然后在上下文菜单中选择导出。选择导出类型常规 - > Ant Buildfiles ,然后点击下一步

Export menu screenshot

在下一个屏幕上,确保选择了您的项目。您可以保留选项的默认设置。点击完成以生成build.xml文件。

Generate antfile dialog screenshot

最后,为确保Travis CI正确运行项目,create a .travis.yml in your project's root folder。对于Java项目,它至少应包含以下内容。

language: java
jdk:
  - oraclejdk8

script: ant build

来源:Kofun devblog - Using Travis CI with Java Eclipse Project