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
- Host: GitHub
- URL: https://github.com/navdeep-g/minimal-gradle
- Owner: navdeep-G
- Created: 2022-12-30T18:53:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-18T14:38:44.000Z (almost 2 years ago)
- Last Synced: 2025-09-17T21:05:07.072Z (10 months ago)
- Topics: gradle, java
- Language: Java
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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