diff --git a/README.md b/README.md
index 3a39f8a..507c6fa 100644
--- a/README.md
+++ b/README.md
@@ -26,9 +26,9 @@ files in the modules (`cas-client-integration-jboss` and `cas-client-support-dis
```xml
- org.jasig.cas.client
- cas-client-core
- ${java.cas.client.version}
+ org.jasig.cas.client
+ cas-client-core
+ ${java.cas.client.version}
```
@@ -102,7 +102,7 @@ files in the modules (`cas-client-integration-jboss` and `cas-client-support-dis
```
-- Tomcat 8 is provided by this dependency:
+- Tomcat 8.0.x is provided by this dependency:
```xml
@@ -111,6 +111,17 @@ files in the modules (`cas-client-integration-jboss` and `cas-client-support-dis
${java.cas.client.version}
```
+
+- Tomcat 8.5.x is provided by this dependency:
+
+```xml
+
+ org.jasig.cas.client
+ cas-client-integration-tomcat-v85
+ ${java.cas.client.version}
+
+```
+
## Configuration
@@ -786,17 +797,17 @@ The `WebAuthenticationFilter` performs these operations for the JBoss AS contain
```xml
...
- CASWebAuthenticationFilter
- org.jasig.cas.client.jboss.authentication.WebAuthenticationFilter
+ CASWebAuthenticationFilter
+ org.jasig.cas.client.jboss.authentication.WebAuthenticationFilter
- CASAuthenticationFilter
- org.jasig.cas.client.authentication.AuthenticationFilter
-
- casServerLoginUrl
- https://cas.example.com/cas/login
-
+ CASAuthenticationFilter
+ org.jasig.cas.client.authentication.AuthenticationFilter
+
+ casServerLoginUrl
+ https://cas.example.com/cas/login
+
...
@@ -848,7 +859,12 @@ CAS authentication support for Tomcat is based on the Tomcat-specific Realm comp
### Component Overview
-In the following discussion of components, only the Tomcat 8.x components are mentioned. The Tomcat 7.0.x and 6.0.x components have exactly the same name, but **are in the tomcat.v7 and tomcat.v6 packages**, e.g. `org.jasig.cas.client.tomcat.v7.Cas20CasAuthenticator` or `org.jasig.cas.client.tomcat.v6.Cas20CasAuthenticator`.
+In the following discussion of components, only the Tomcat 8.x components are mentioned. Tomcat 8.0.x components are housed inside
+`org.jasig.cas.client.tomcat.v8` while Tomcat 8.5.x components are inside `org.jasig.cas.client.tomcat.v85`. You should be able to use
+the same exact configuration between the two modules provided package names are adjusted for each release.
+
+The Tomcat 7.0.x and 6.0.x components have exactly the same name, but **are in the tomcat.v7 and tomcat.v6 packages**, e.g.
+`org.jasig.cas.client.tomcat.v7.Cas20CasAuthenticator` or `org.jasig.cas.client.tomcat.v6.Cas20CasAuthenticator`.
#### Authenticators