`
shoppingbill
  • 浏览: 59651 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Ant Eclipse IDE Integration

    博客分类:
  • Ant
阅读更多

 

Ant > Ant Eclipse IDE Integration

Ant Eclipse IDE Integration

To integrate Ant build file with the Eclipse IDE, first create a build.xml file, right click the project select New->Other->XML, enter the name as build.xml and click Finish.

Eclipse IDE 集成Ant,首先要创建一个build.xml文件.右击工程选择 New->Other->XML,键入build.xml点击Finish.

<?xml version="1.0" ?> 
<project name="Ant Example" default="execute"> 
	<target name="init" depends="clean"> 
		<mkdir dir="build/classes" /> 
	</target> 
	<target name="compile" depends="init"> 
		<javac srcdir="src" destdir="build/classes" /> 
	</target> 
	<target name="execute" depends="compile"> 
		<java classname="com.vaannila.helloworld.HelloWorld" classpath="build/classes" /> 
	</target> 
	<target name="clean"> 
		<delete dir="build" /> 
	</target> 
</project>

 To build the project right click the build.xml file and select Ant Build.

build工程右击build.xml选择 Ant Build.

The HelloWorld.java file will be compiled and executed. The following message shows the sequence of events that happen once the build file is executed.

HelloWorld.java文件就会编译并运行.下面信息会依此显示出来.

Buildfile: E:\Eclipse Workspace\AntExample\build.xml 
clean: 
[delete] Deleting directory E:\Eclipse Workspace\AntExample\build 
init: 
[mkdir] Created dir: E:\Eclipse Workspace\AntExample\build\classes 
compile: 
[javac] Compiling 1 source file to E:\Eclipse Workspace\AntExample\build\classes 
execute: 
[java] Hello World! 
BUILD SUCCESSFUL 
Total time: 625 milliseconds

 You can download the build file here.

Build file :Download
Project :Download

分享到:
评论

相关推荐

    Eclipse PDE Export ANT Script (CI)

    Eclipse PDE(Plug-in Development Environment)是...总之,Eclipse PDE Export ANT Script是Eclipse插件开发中的重要工具,它将IDE的便利性扩展到了CI/CD环境中,使得开发者能够高效地管理和维护复杂的插件项目。

    ant部署远程服务器

    在Eclipse中,你需要安装一个名为“Eclipse Ant Integration”的插件,使得Eclipse支持Ant脚本的运行。这个插件允许你在IDE内部直接运行Ant构建文件,简化项目管理。 接下来,是远程部署的关键步骤: 1. **配置...

    Eclipse 打包插件

    标题中的“Eclipse打包插件”主要指的是Eclipse IDE中用于创建和管理项目输出的工具,包括Ant Builder、Maven Integration、Gradle等。这些插件帮助开发者将源代码、资源文件和依赖库整合在一起,生成独立的可执行...

    ant 使用指南-ant入门

    - Ant可以通过命令行调用,也可以集成到Eclipse、IntelliJ IDEA等IDE中,提供图形化的构建界面。 通过学习和使用Ant,开发者可以创建灵活、可重复和跨平台的构建脚本,这对于大型Java项目尤其有用。Ant的简单性和...

    Java混淆器Allatori-7.5@集成eclipse编译

    对外接口联调保护你的Java源码-Java混淆器Allatori-7.5@集成eclipse编译 Obfuscation with Setting Classpath Single Jar Packaging Introduction to Watermarks Using Stack Trace Utility ...Eclipse IDE Plugin

    Eclipse_jiaocheng.rar_Eclipse_eclipse pdf

    1. 安装Maven插件:通过Eclipse Marketplace或p2更新站点安装Maven Integration for Eclipse。 2. 配置Maven:设置Maven本地仓库路径及远程仓库地址。 3. 创建Maven项目:“File” &gt; “New” &gt; “Project” &gt; Maven...

    Wrox.Press.Professional.Java.Tools.for.Extreme.Programming.eBook-LiB.part3

    The Extreme Programming (XP) methodology enables you to build and test ...How to harness plugins for JUnit, Cactus, and Ant in the Eclipse IDE Ways to implement Extreme Programming best practices

    Wrox.Press.Professional.Java.Tools.for.Extreme.Programming.eBook-LiB.part4

    The Extreme Programming (XP) methodology enables you to build and test ...How to harness plugins for JUnit, Cactus, and Ant in the Eclipse IDE Ways to implement Extreme Programming best practices

    Professional Java Tools for Extreme Programming (JAVA经典书籍英文版)_part2

    The Extreme Programming (XP) methodology enables you to build and test ...How to harness plugins for JUnit, Cactus, and Ant in the Eclipse IDE Ways to implement Extreme Programming best practices

    Professional Java Tools for Extreme Programming (JAVA经典书籍英文版)_part1

    The Extreme Programming (XP) methodology enables you to build and test ...How to harness plugins for JUnit, Cactus, and Ant in the Eclipse IDE Ways to implement Extreme Programming best practices

    32位eclipse

    5. **Maven Integration**:通过Maven插件,Eclipse可以方便地管理项目的依赖关系,构建和打包应用。 6. **Eclipse IDE for JavaScript and Web Developers**:这是Eclipse的一个特殊版本,专注于JavaScript和Web...

    eclipse-php-2020-06-R-win32-x86_64.zip

    6. **Build System**: Eclipse 支持Ant和Maven等构建工具,帮助开发者自动化构建和部署PHP项目。 7. **Integration with PHP Frameworks**: PDT通常支持流行的PHP框架,如Symfony, Laravel, WordPress等,提供框架...

    eclipse培训.rar

    6. **构建工具(Build Tool)**:Eclipse内置了Ant构建工具,同时也支持Maven和Gradle等现代构建系统,方便管理项目依赖和构建过程。 7. **调试器(Debugger)**:Eclipse的调试器是其一大亮点,支持断点、单步执行...

    Eclipse详细参考文档.rar

    - Maven Integration for Eclipse:Maven项目的支持。 - PyDev:Python开发的插件。 - StatET:统计代码分析工具。 8. **Eclipse社区与资源**: - Eclipse官网提供最新的下载、文档和社区支持。 - Eclipse ...

    Manning - Eclipse In Action.pdf

    - **Integrating Ant with Eclipse**: Steps for integrating Ant into Eclipse, enabling developers to execute build scripts directly from the IDE. **Chapter 6: Source Control with CVS** - **...

    Eclipse中文教程

    - Maven:通过Maven Integration for Eclipse插件,Eclipse也能很好地支持Maven项目。 **7. 版本控制** - Git:Eclipse的EGit插件提供了对Git的全面支持,包括克隆、提交、分支管理和合并。 - SVN:Subversive或...

    Eclipse tomcat插件

    在搜索结果中,找到与Tomcat相关的插件,如"Tomcat Integration for Eclipse"或"Spring Tools 4",然后按照提示步骤进行安装。安装过程中,确保接受许可证协议,并在必要时重启Eclipse以完成安装。 **使用Eclipse ...

    servicemix

    1. 环境准备:安装必要的工具,如Eclipse IDE、Ant等。 2. 应用设计:根据业务需求设计服务组件。 3. 编码实现:使用Java或其他支持的语言编写服务代码。 4. 测试与部署:在ServiceMix环境中测试并部署服务。 六、...

    Agile Java Development with Spring, Hibernte and Eclipse

    综上所述,《敏捷Java开发》是一本全面介绍Spring、Hibernate框架和Eclipse IDE在敏捷Java开发中的应用的书籍,涵盖了从技术细节到开发实践的各个方面,非常适合希望提升Java开发技能的读者阅读。

Global site tag (gtag.js) - Google Analytics