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