ivy,ivyde插件-eclipse

官方共享更新磁盘下载

http://www.apache.org/dist/ant/ivyde/updatesite/

http://ant.apache.org/ivy/download.cgi

简述:

在eclipse配置Ivy外加lib管理工具 , 用来导入项目需要的lib包

这个工具可以指定需要那个lib,定义在xml里之后,ivy就会自动帮你添加外部包

很方便!

eclipse直接更新

步骤:

1. 下载资源 (可能出问题,多google 、多百度 无非就是缺了feature对应的plugin)

eclipse在install new software

输入: http://www.apache.org/dist/ant/ivyde/updatesite

下载(全部下载,有问题无视之..) 如果还是不行就到网站手动下载,填充相应的plugins和features到eclipse下的对应文件

这里的不行是指在window => preference 里没有出现ivy这一项

2.右击某个项目, 新建一个ivy

3. next下去,这里我选的项目叫JavaTest

4.文件配置

这步是关键:

需要文件两个

ivy.xml (上面创建出来的)

我想实现的是修改ivy配置文件之后让他帮我导入一个gson 1.7.1的外部包

ivy.xml代码如下

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one
   or more contributor license agreements.  See the NOTICE file
   distributed with this work for additional information
   regarding copyright ownership.  The ASF licenses this file
   to you under the Apache License, Version 2.0 (the
   "License"); you may not use this file except in compliance
   with the License.  You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing,
   software distributed under the License is distributed on an
   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
   KIND, either express or implied.  See the License for the
   specific language governing permissions and limitations
   under the License.
-->
<ivy-module version="2.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
    <info
        organisation=""
        module="JavaTest"
        status="integration">
    </info>

    <dependencies>
        <dependency org="com.google.code.gson" name="gson" rev="1.7.1" />
    </dependencies>

</ivy-module>

其中dependency就是我google之后查到的ivy的dependency的路径吧

5. 右击ivy.xml

Add Ivy Library

点击finish之后

6. 于是,就多了一个ivy.xml[*]里面有刚才ivy.xml里加入的dependency

时间: 2024-10-16 22:07:19

ivy,ivyde插件-eclipse的相关文章

eclipse添加删除插件-eclipse marketplace

eclipse添加删除插件-eclipse marketplace 在有些版本的eclips上并没有eclipse marketplace ,这让eclipse添加插件变得比较玛法,传统的办法都是通过自行下载插件或者用 help->install new software 来添加,这样的办法有如下缺点: 不知道去哪儿下载某个插件 不知道哪些插件好用 安装插件大费周折,浪费时间 为此针对上述情况,根据自己的使用经验我总结出了这个办法来解决上述矛盾. 上百度或者谷歌搜索一下eclipse下好用的插件

Atitit.ide代码块折叠插件 eclipse

Atitit.ide代码块折叠插件 eclipse 1. User Defined Regions  #region  ...  #endregion  插件com.cb.eclipse.folding 1 2. If else for 折叠插件 1 3. 在eclipse 中开启设置代码折叠功能 Ctrl+Shift+Numpad_Divede(小键盘的/号) 2 4.  2 1. User Defined Regions  #region  ...  #endregion  插件com.cb

Eclipse中安装可以新建html文件的插件(Eclipse HTML Editor)

最近在eclipse中开发android项目,用到了jquery mobile框架,则会涉及到新建html文件,发现eclipse不自带新建html文件的插件,必须得新建一个其他形式的文件,譬如xml格式的文件,然后重命名,后缀名改成html,觉得这样老麻烦的,所以在网上发现了Eclipse HTML Editor,不过此插件似乎只支持新建html文件,不支持其格式化.网上看了其他一个html格式化的插件Eclipse Tidy,不过用了后,发现格式化后的html一点都不符合代码审读标准.也不知

Eclipse Oxygen(4.7.0)安装插件Eclipse Class Decompiler反编译JAR文件

引用自官方内容 Eclipse Class Decompiler是一款Eclipse插件,整合了多种反编译器,和Eclipse Class Viewer无缝集成,能够很方便的使用插件查看类库源码,进行Debug调试. 同时还提供了在线自动查找源代码,查看Class二进制字节码的功能. Eclipse Class Decompiler对JDK的最低要求为JDK1.6, 能反编译和debug各版本的Class文件,支持JDK8的Lambda语法,同时支持中文等非Ascii码字符集的解析,支持Ecli

SVN插件eclipse在线安装地址

SVN插件eclipse在线安装地址: https://dl.bintray.com/subclipse/releases/subclipse/ 选上对应的版本,如: https://dl.bintray.com/subclipse/releases/subclipse/4.3.x/ 逐个安装: Core SVNKit Library Subclipse (最新版本) 原文地址:https://www.cnblogs.com/fengtaijun/p/10593429.html

Eclipse4.4 安装java反编译插件Eclipse Class Decompiler

一.在线安装方式: Eclipse Class Decompiler整合了目前最好的2个Java反编译工具Jad和JD-Core,并且和Eclipse Class Viewer无缝集成,能够很方便的使用本插件查看类库源码,以及采用本插件进行Debug调试.Eclipse Class Decompiler插件更新站点: http://feeling.sourceforge.net/update,然后直接使用Eclipse进行更新,支持Eclipse 3.x, 4.x,不依赖任何其他插件,直接勾选更

分享文件转编码的插件(eclipse)

最近碰到一个编码的问题,有一个项目是用GBK编码的,由于要把项目移植到Linux,考虑到通用性,想将项目转成UTF-8编码格式的,刚开始用UE.EditPlus转,发现文件内容还是无法转移,全部是乱码,后来在网上到找一个非常好用的插件(com.lifesting.tool.encoding_1.0.0.jar),使用方法如下: 第一步 将插件com.lifesting.tool.encoding_1.0.0.jar拷贝到eclipse/plugins目录下,如果是eclipse3.5以上,请放在

[Eclipse插件] Eclipse中如何安装和使用GrepCode插件

Java是开源的世界,如何快速的搜索到你需要的Java源码呢? 2009年7月17日,GrepCode团队发布了一个有趣的 Java源码搜索引擎-GrepCode .与现有的各种搜索引擎相比,Java源码搜索引擎-GrepCode把Java源码搜索带到了一个新的高度.Java源码搜索引擎-GrepCode 不但提供了语法的高亮显示和JavaDoc的现实,还提供了一种界面非常友好的的Java类型集成视图,便于人们搜索.用户可以很容易的找到某个特定版本代码依赖的工程代码.Java源码搜索引擎-Gre

Eclipse常用插件 + Eclipse快捷键

J2EE开发IDE,常用的有Eclipse.Myeclipse.Intellij IDEA 版本(Luna):http://www.eclipse.org/downloads/ 版本(2015GA):http://www.myeclipsecn.com/ 版本(ideaIU-13.1.6.exe):http://www.jetbrains.com/idea/ JVM内存设置:    -Xms512m -Xmx512m -XX:MaxPermSize=512m Project>clean:把编译好