Skip to content

Commit

Permalink
add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenOTT committed Sep 3, 2018
1 parent 0f0a86d commit 6673381
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,44 @@ JWT Config:

If you want to see what happens when you get a access denied, change remove the admin group from the `groupIds` field

# How to install

If you are building a Spring Boot or generating a JAR wth camunda, you can install the library as follows:

Add JitPack as a repository source in your build file.

If you are using Maven, then add the following to your pom.xml

```xml
<project>
...
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
...
```

This snippet will enable Maven dependency download directly from Github.com

Then add the following dependency:

```xml
...
<dependency>
<groupId>com.github.digitalstate</groupId>
<artifactId>camunda-rest-jwt-authentication</artifactId>
<version>v0.5</version>
<scope>compile</scope>
</dependency>
```

If you are using a existing Docker Container with Camunda / the Shared Engine configuration of Camunda, and you would like to add JWT see:

1. Tomcat: [`./examples/docker/tomcat`](./examples/docker/tomcat)


# Tomcat Servlet Filter Configuration

Expand Down

0 comments on commit 6673381

Please sign in to comment.