当前位置: 代码迷 >> Eclipse >> Myeclipse 装配 gradle 插件以及基本使用
  详细解决方案

Myeclipse 装配 gradle 插件以及基本使用

热度:1006   发布时间:2016-04-22 23:44:51.0
Myeclipse 安装 gradle 插件以及基本使用

1、在线安装地址

http://dist.springsource.com/release/TOOLS/update/e4.4

这是spring提供的,天朝不一定能访问,可能需要翻墙,

2、选择Core / Eclipse Integration for Gradle -> Gradle IDE
这个是gradle 的核心了

QQ截图20141201155050

下面直接点击下一步,即可完成安装。

 

3、使用myeclipse 创建一个gradle项目

File -> New -> Project -> Gradle -> Gradle Project -> Next

QQ截图20141201155232

 

输入项目的名称,选择Sample project Java Quickstart,点击完成即可

QQ截图20141201155605

4、添加一个jar包依赖
编辑文件build.gradle,找到dependencies,在里面添加一条jar的信息,例如:

dependencies {    compile group: 'commons-collections', name: 'commons-collections', version: '3.2'    //添加一个spring 依赖    compile 'org.springframework:spring-core:4.1.2.RELEASE'    testCompile group: 'junit', name: 'junit', version: '4.+'}

5、刷新项目,使得myeclipse自动下载jar包.
右击项目->Gradle->Refresh Dependencies

20141201160419

6、打包项目
右击项目->Run As -> Gradle Build... -> 在命令行里面输入build,点击运行即可

20141201160657
20141201160737

版权声明:本文为博主原创文章,未经博主允许不得转载。

  相关解决方案