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


11

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

Buildfile: build.xml does not exist!
Build failed

The command "ant test" exited with 1.

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

Answers:


10

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

在Package Explorer中右键单击您的项目,然后在上下文菜单中选择Export。选择导出类型General-> Ant Buildfiles,然后单击Next

导出菜单屏幕截图

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

生成antfile对话框截图

最后,为确保Travis CI正确运行项目,请在项目的根文件夹中创建.travis.yml。对于Java项目,它至少应包含以下内容。

language: java
jdk:
  - oraclejdk8

script: ant build

来源:Kofun devblog-将Travis CI与Jav​​a Eclipse项目一起使用

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.