Updated Architecture (markdown)

master
srmoore 2012-07-09 13:25:02 -07:00
parent dfee2341e1
commit 6b4d375702
1 changed files with 31 additions and 34 deletions

@ -92,7 +92,8 @@ For instance, to overwrite the data source configuration in the main server war
1. Create a directory for the top level: mkdir example-openid-connect-overlay 1. Create a directory for the top level: mkdir example-openid-connect-overlay
2. Create example-openid-connect-overlay/pom.xml 2. Create example-openid-connect-overlay/pom.xml
`<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>example.org</groupId> <groupId>example.org</groupId>
@ -100,12 +101,10 @@ For instance, to overwrite the data source configuration in the main server war
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<name>example-openid-connect-overlay</name> <name>example-openid-connect-overlay</name>
<modules> <modules>
<module>OpenID-Connect-Java-Spring-Server</module> <module>OpenID-Connect-Java-Spring-Server</module>
<module>my-openid-connect</module> <module>my-openid-connect</module>
</modules> </modules>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.mitre</groupId> <groupId>org.mitre</groupId>
@ -114,20 +113,18 @@ For instance, to overwrite the data source configuration in the main server war
<version>0.1-SNAPSHOT</version> <version>0.1-SNAPSHOT</version>
</dependency> </dependency>
</dependencies> </dependencies>
<properties> <properties>
<java-version>1.6</java-version> <java-version>1.6</java-version>
<org.springframework-version>3.1.1.RELEASE</org.springframework-version> <org.springframework-version>3.1.1.RELEASE</org.springframework-version>
<org.slf4j-version>1.5.10</org.slf4j-version> <org.slf4j-version>1.5.10</org.slf4j-version>
<spring.security.version>3.1.0.RELEASE</spring.security.version> <spring.security.version>3.1.0.RELEASE</spring.security.version>
</properties> </properties>
<build> <build>
<finalName>my-openid-connect-server</finalName> <finalName>my-openid-connect-server</finalName>
</build> </build>
</project> </project>
`
This creates a project with two modules, one bing the `OpenID-Connect-Java-Spring-Server` (the original), and `my-openid-connect` which will hold our modifications we want to overlay.
*** ***