`
小网客
  • 浏览: 1243898 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

在Eclipse中通过build.xml导入工程报Specified buildfile does not contain a javac task

    博客分类:
  • J2ee
 
阅读更多

问题描述:

在Eclipse中通过build.xml导入工程报Specified buildfile does not contain a javac task

解决方式:

加入javac task

<javac srcdir="src" destdir="bin" />

 

完整build.xml如下:

<project name="demo_book" default="all" basedir=".">

    <target name="all">
        <ant dir="printer"/>
        <ant dir="simple_filesystem"/>
        <ant dir="evictor_filesystem"/>
        <ant dir="map_filesystem"/>
        <ant dir="lifecycle"/>
    </target>

    <target name="clean">
        <ant dir="printer" target="clean"/>
        <ant dir="simple_filesystem" target="clean"/>
        <ant dir="lifecycle" target="clean"/>
        <ant dir="evictor_filesystem" target="clean"/>
        <ant dir="map_filesystem" target="clean"/>
    </target>
<javac srcdir="src" destdir="bin" />
</project>

 

1
2
分享到:
评论

相关推荐

    eclipse插件开发-添加xmlcatalog到plugin Specified Entries

    在Eclipse插件开发中,XMLCatalog是一个非常重要的工具,它用于管理和解析XML文档中的实体引用,例如DTD(文档类型定义)或XSD(XML Schema定义)。在本教程中,我们将深入探讨如何将XMLCatalog集成到你的Eclipse...

    The user specified as a definer ('root'@'%') does not exist 解决方法

    mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解决方法

    maven settings.xml 解决在项目新建时报错,Error executing Maven. 2 problems

    maven settings.xml 解决在项目新建时报错 Error executing Maven. 2 problems were encountered while building the effective settings。下载这个,注意54行的目录,修改成自己的项目目录,直接覆盖原来的\conf...

    在Eclipse中导入dtd和xsd文件,使XML自动提示

    ### 在Eclipse中导入DTD和XSD文件,实现XML自动提示 #### 一、概述 在Eclipse等IDE中开发基于XML技术的应用时,为了提高编码效率和代码质量,我们通常会利用IDE提供的智能提示功能。这需要我们将相关的DTD...

    eclipse添加springXML文件的提示

    本文将详细介绍如何在Eclipse IDE中设置Spring XML文件提示功能,帮助开发者更高效地编写代码。 #### 二、准备工作 在开始之前,请确保已经安装了以下软件: - **Eclipse IDE**:推荐使用最新版本的Eclipse IDE ...

    关于IllegalStateException: The specified child already has a parent.

    IllegalStateException: The specified child already has a parent.我的博客中有文章讲解

    arm 配置JTAGflash id does not match错误的解决方案

    在ARM开发过程中,使用JTAG接口进行程序烧写时,有时会出现“Flash ID Does Not Match”(Flash ID不匹配)的错误提示。这一问题在多种ARM微控制器上都有可能发生,尤其在使用H-JTAG烧录工具时较为常见。本文将以LPC...

    Mysql:The user specified as a definer ('xxx@'%') does not exist的解决方案

    在MySQL中,`The user specified as a definer ('xxx@'%') does not exist` 这个错误通常出现在尝试执行带有DEFINER语句的SQL对象(如存储过程、触发器或视图)时,DEFINER指定的用户不存在或者没有正确的权限。...

    Mysql:The user specified as a definer (‘xxx@’%’) does not exist的解决方案

    今天项目优化过程中,mysql有个问题The user specified as a definer (‘wx_root’@’%’) does not exist 查了一下,意思是执行sql无权限。 看了下数据库用户是quoters 而sql没有所属权。那就找原因了。发现sql执行...

    解决Mysql Error-The user specified as a definer (‘mysql.infoschema’

    在MySQL数据库操作中,"The user specified as a definer (‘mysql.infoschema’@’localhost’) does not exist" 是一个常见的错误提示,这通常发生在尝试执行存储过程、触发器或者视图等对象时,这些对象的定义者...

    quartusII破解后运行仿真出现的错误及解决办法

    quartusII 破解后运行仿真出现如下错误的解决办法 Error: Current license file does not support the EP1C6Q240C8 device。

    StampVer

    This build number can be specified on the command line, or via a response file. If a response file is used, StampVer can autoincrement the version number contained it it. &lt;br&gt;This can be...

    mysql\eclipse常见问题及解决方案

    3. **Maven构建问题**:在执行Maven构建时,如果收到“No goals have been specified for this build”的错误,可以在pom.xml文件的&lt;build&gt;标签后面添加&lt;defaultGoal&gt;compile,这样Maven会默认执行编译目标。...

    S7-200通讯 specified access point not found补丁

    标题中的"S7-200通讯 specified access point not found补丁"指的是在使用Siemens S7-200系列PLC(可编程逻辑控制器)进行通信时遇到的问题,即"指定的访问点未找到"。这通常是由于网络配置错误、硬件故障或者软件不...

    build-tools.29.0.2.zip

    本文将深入探讨“build-tools.29.0.2.zip”这一版本的Android SDK Build-Tools,以及它在Android开发中的作用。 Android SDK Build-Tools是Android SDK的一个子模块,主要负责编译、打包和优化Android应用。这个...

    VMWare (specified virtual disk needs repair...)修复

    specified virtual disk needs repair。附修复工具和使用方法。 分数不够的可以到VM官方下载修复工具,如果找不到就贡献1分下载我上传的吧:) =====================================================================...

    eclipse下安装cdt时出现的问题

    Binary not found”或“Program file not Specified”的错误提示,这些问题通常是由于编译器配置不正确或者Eclipse无法找到可执行文件导致的。以下是一些解决这些问题的步骤和知识点: 1. **安装CDT**: - ...

    FileOperate文件管理

    Copy a specified file to another directory. Copy a specified directory (along with all sub-directories and files) to another directory. Encrypt/decrypt a specified file. Compress some files into a ...

    Android build.gradle版本名打包配置的方法

    1、生成密钥文件到app工程目录下 2、在gradle.properties文件下配置密钥文件信息 # Project-wide Gradle settings. # IDE (e.g. Android Studio) users: # Gradle settings configured through the IDE *will ...

    apktool documentation

    After you find a framework file you could pull it via adb pull /path/to/file or use a file manager application. After you have the file locally, pay attention to how Apktool installs it. The number ...

Global site tag (gtag.js) - Google Analytics