diff --git a/Maven-Dependency.md b/Maven-Dependency.md
new file mode 100644
index 0000000..45df6f6
--- /dev/null
+++ b/Maven-Dependency.md
@@ -0,0 +1,46 @@
+Our code is now published as a set of Maven artifacts. We publish under the group id 'org.mitre' and full version information is available at [mvnrepository.com](http://mvnrepository.com/artifact/org.mitre) and [search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.mitre%22).
+
+# Artifacts
+
+Below is a the dependency information for each of our artifacts, using the latest published version.
+
+## 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.
+```
+
+ org.mitre
+ openid-connect-parent
+ 1.0.3
+
+```
+## openid-connect-common
+
+Includes common classes, service and repository interfaces, and JPA-annotated model code.
+```
+
+ org.mitre
+ openid-connect-common
+ 1.0.3
+
+```
+## openid-connect-client
+
+Includes our RP/client implementation, built around spring security filters. Depends on openid-connect-common.
+```
+
+ org.mitre
+ openid-connect-client
+ 1.0.3
+
+```
+## 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.
+```
+
+ org.mitre
+ openid-connect-server
+ 1.0.3
+
+```
\ No newline at end of file