An open API service indexing awesome lists of open source software.

https://github.com/navdeep-g/minimal-gradle

A minimal Gradle setup designed to demonstrate the basics of using Gradle for simple projects
https://github.com/navdeep-g/minimal-gradle

gradle java

Last synced: 3 months ago
JSON representation

A minimal Gradle setup designed to demonstrate the basics of using Gradle for simple projects

Awesome Lists containing this project

README

          

* A minimal Gradle setup designed to demonstrate the basics of using Gradle for simple projects

* How to build and run project:

```
./gradlew clean
./gradlew build
java -jar build/libs/java-print-string-gradle.jar 'hello, world'
```

* Please refer to [build.gradle](build.gradle) for implementation details