Skip to content

Commit

Permalink
add pom.xml example to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
waschmittel authored Jul 30, 2019
1 parent 64ffa03 commit e3216e2
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ Because this is a library, Checkstyle is used to make sure all public classes/me

## Table of Contents

* [Usage:](#Usage)
* [Examples:](#Examples)
* [Usage](#Usage)
* [Maven](#Maven)
* [Examples](#Examples)
* [Unit Test Example:](#Unit-Test-Example)
* [Integration Test Example:](#Integration-Test-Example)
* [Example with MDC](#Example-with-MDC)
Expand All @@ -20,9 +21,22 @@ Because this is a library, Checkstyle is used to make sure all public classes/me
* [Cucumber stepdefs](#Cucumber-stepdefs)
* [Cucumber DTOs](#Cucumber-DTOs)

## Usage:
## Usage

### Examples:
### Maven

Add log-capture as a test dependency to your project. If you use Maven, add this to your pom.xml:

```pom.xml
<dependency>
<groupId>de.dm.infrastructure</groupId>
<artifactId>log-capture</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
```

### Examples

#### Unit Test Example:

Expand Down

0 comments on commit e3216e2

Please sign in to comment.