forked from aditya-sridhar/simple-gradle-java-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4249024
commit 28bc2cc
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Simple Gradle Java APP | ||
Simple Java App Created with Gradle | ||
|
||
## Cloning the Code | ||
|
||
Clone this code into your local using the following command | ||
|
||
`git clone https://github.com/aditya-sridhar/simple-gradle-java-app.git` | ||
|
||
## Building the Application | ||
|
||
The application can be built using the following command | ||
|
||
**Windows** : `gradlew.bat build` | ||
|
||
**Linux/MacOS**: `./gradlew build` | ||
|
||
## Running the Application | ||
|
||
The application can be run using the following command | ||
|
||
**Windows** : `gradlew.bat run` | ||
|
||
**Linux/MacOS**: `./gradlew run` | ||
|
||
## Tests | ||
|
||
After the Application is built using the Build command, the test results report can be found in below file | ||
*build/reports/tests/test/index.html* |