Coder Social home page Coder Social logo

gradle-java-demo's Introduction

gradle-Java-Demo

how to use Gradle to build and run Java

a very simple example to illustrate one miss of most examples.

注意 java的源码目录默认值,否则容易出错 网上大多示例并没指出此点

  • 更改gradle默认目录: sourceSets
    • e.g.: 当前目录表示为 -> srcDir '.'

build.gradle 示例 

sourceSets {
    main {
        java {
            srcDir 'src/java' // 指定源码目录
        }
        resources {
            srcDir 'src/resources' //资源目录
        }
    }
}
  • for java: 主类名与其文件名一致,否则出错
    • e.g., 主类名为 class HelloGradle,则其文件名必须为HelloGradle.java
      • 并与build.gradle文件中 mainClassName = 'HelloGradle 相对应

gradle-java-demo's People

Contributors

jiangwest avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.