Updated Maven Dependency (markdown)

master
Justin Richer 2015-08-24 12:33:59 -04:00
parent e96e05531a
commit 1efebb3a8b
1 changed files with 31 additions and 6 deletions

@ -12,7 +12,7 @@ The parent Maven project, which depends on each of the following artifacts. Incl
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-parent</artifactId>
<version>1.1.16</version>
<version>1.2.0</version>
<type>pom</type>
</dependency>
```
@ -23,7 +23,7 @@ Includes common classes, service and repository interfaces, and JPA-annotated mo
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-common</artifactId>
<version>1.1.16</version>
<version>1.2.0</version>
<type>jar</type>
</dependency>
```
@ -34,7 +34,7 @@ Includes our RP/client implementation, built around spring security filters. Dep
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-client</artifactId>
<version>1.1.16</version>
<version>1.2.0</version>
<type>jar</type>
</dependency>
```
@ -45,7 +45,7 @@ Includes implementations of services and repositories from common which are used
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server</artifactId>
<version>1.1.16</version>
<version>1.2.0</version>
<type>jar</type>
</dependency>
```
@ -57,7 +57,32 @@ Includes IdP/server implementation, deployable as a webapp. Depends on openid-co
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
<version>1.1.16</version>
<version>1.2.0</version>
<type>war</type>
</dependency>
```
## uma-server
Includes implementations of services and repositories from common which are used by the UMA server. Depends on openid-connect-common.
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server</artifactId>
<version>1.2.0</version>
<type>jar</type>
</dependency>
```
## uma-server-webapp
Includes UMA server implementation on top of IdP/AS, deployable as a webapp. Depends on openid-connect-server-webapp.
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
<version>1.2.0</version>
<type>war</type>
</dependency>
```