Updated Maven Dependency (markdown)

master
Justin Richer 2013-12-02 09:29:34 -08:00
parent 44d1909ace
commit 15c7d51a65
1 changed files with 17 additions and 5 deletions

@ -11,7 +11,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.0.11</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
@ -22,7 +22,7 @@ Includes common classes, service and repository interfaces, and JPA-annotated mo
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-common</artifactId>
<version>1.0.11</version>
<version>1.1.0</version>
<type>jar</type>
</dependency>
```
@ -33,18 +33,30 @@ Includes our RP/client implementation, built around spring security filters. Dep
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-client</artifactId>
<version>1.0.11</version>
<version>1.1.0</version>
<type>jar</type>
</dependency>
```
## openid-connect-server
Includes IdP/server implementation, with implementations of services and repositories from common which are used by the server. Depends on openid-connect-common.
Includes implementations of services and repositories from common which are used by the IdP/server. Depends on openid-connect-common.
```
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server</artifactId>
<version>1.0.11</version>
<version>1.1.0</version>
<type>jar</type>
</dependency>
```
## openid-connect-server-webapp
Includes IdP/server implementation, deployable as a webapp. Depends on openid-connect-server.
```
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
<version>1.1.0</version>
<type>war</type>
</dependency>
```