Updated Maven Dependency (markdown)

master
Justin Richer 2014-02-11 07:22:58 -08:00
parent 3a4ebc0ab7
commit 3234390937
1 changed files with 10 additions and 10 deletions

@ -7,44 +7,44 @@ Below is a the dependency information for each of our artifacts, using the lates
## openid-connect-parent
The parent Maven project, which depends on each of the following artifacts. Include this in your dependency set if you need classes from each of the other three artifacts.
```
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-parent</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>pom</type>
</dependency>
```
## openid-connect-common
Includes common classes, service and repository interfaces, and JPA-annotated model code.
```
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-common</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>jar</type>
</dependency>
```
## openid-connect-client
Includes our RP/client implementation, built around spring security filters. Depends on openid-connect-common.
```
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-client</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>jar</type>
</dependency>
```
## openid-connect-server
Includes implementations of services and repositories from common which are used by the IdP/server. Depends on openid-connect-common.
```
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>jar</type>
</dependency>
```
@ -52,11 +52,11 @@ Includes implementations of services and repositories from common which are used
## openid-connect-server-webapp
Includes IdP/server implementation, deployable as a webapp. Depends on openid-connect-server.
```
```xml
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>war</type>
</dependency>
```