java-第一个gradle工程

1.创建目录firsjava

2.使用portable 的grable 包 :gradlew  gradlew.bat gradle文件夹, 将这三个文件拷贝到firstjava

3. 在firstjava 目录下执行./gradlew init  初始化工程

4创建src/main/com.me/ 目录

5. 创建一个java类 

package com.me.helloworld;

/**
 * Created by zhaodong on 27/07/2018.
 */
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("hello world");
    }
}

6.保存后 执行./gradlew assemble, 在build/libs目录中生成一个jar包

7.执行命令 java -jar build/libs/firstjava.jar   看到输出  hello world

 

付上buid.gradle

/*
 * This build file was auto generated by running the Gradle 'init' task
 * by 'zhaodong' at '7/27/18 3:11 PM' with Gradle 2.14.1
 *
 * This generated file contains a commented-out sample Java project to get you started.
 * For more details take a look at the Java Quickstart chapter in the Gradle
 * user guide available at https://docs.gradle.org/2.14.1/userguide/tutorial_java_projects.html
 */


// Apply the java plugin to add support for Java
apply plugin: 'java'

jar {
    manifest {
        attributes 'Main-Class': 'com.me.helloworld.HelloWorld'
    }
}

// In this section you declare where to find the dependencies of your project
repositories {
    // Use 'jcenter' for resolving your dependencies.
    // You can declare any Maven/Ivy/file repository here.
    jcenter()
}

// In this section you declare the dependencies for your production and test code
dependencies {
    // The production code uses the SLF4J logging API at compile time
    compile 'org.slf4j:slf4j-api:1.7.21'

    // Declare the dependency for your favourite test framework you want to use in your tests.
    // TestNG is also supported by the Gradle Test task. Just change the
    // testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
    // 'test.useTestNG()' to your build script.
    testCompile 'junit:junit:4.12'
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值