Skip to content

Adding mvn test command #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@
### V1.1.1-SNAPSHOT
+ Minor refactoring
+ Update documentation
+ Update templates
+ Update templates
### V1.1.2-SNAPSHOT
+ Minor refactoring
+ Update documentation
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ A java helper utilities that form HTTP security header for authentication and ve
- [Getting Started](#getting-started)
* [Using Maven](#maven-guide)
+ [Maven Build Option](#maven-build-option)
+ [Maven Test](#maven-test)
* [Using Gradle](#gradle-guide)
+ [Preparation](#preparation)
+ [Gradle Build Option](#gradle-build-option)
Expand Down Expand Up @@ -64,7 +65,7 @@ mvn install
<dependency>
<groupId>com.api.util</groupId>
<artifactId>ApiSecurity</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.1.2-SNAPSHOT</version>
</dependency>

```
Expand All @@ -83,6 +84,13 @@ mvn install

```

#### Maven Test
To execute unit-test with Maven command

```bash
mvn test
```

### Gradle Guide

+ Download and Install Gradle (4.0 or above)
Expand Down