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

1、在线安装地址

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

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

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

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

 

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

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

 

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

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

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


你可能感兴趣的:(Myeclipse 安装 gradle 插件以及基本使用)