diff --git a/docs/config/config.md b/docs/config/config.md
index 73d0294..145b641 100644
--- a/docs/config/config.md
+++ b/docs/config/config.md
@@ -1,6 +1,6 @@
# Deep Java Client config values
-A list of the possible config values for the deep python agent. They can be set via code, as environment variables, or as system properties.
+A list of the possible config values for the deep java client. They can be set via code, as environment variables, or as system properties.
Note: When setting as environment variable prefix the key with 'DEEP_'. e.g. DEEP_SERVICE_URL
@@ -10,7 +10,7 @@ Note: When setting as system property lower case and use '.' as well as the pref
|-----------------------|------------|--------------------------------------------------------------------------------------------------------------------------------------|
| SERVICE_URL | deep:43315 | The url (hostname:port) of the deep service to connect to. |
| SERVICE_SECURE | True | Can be set to False if the service doesn't support secure connections. |
-| LOGGING_CONF | None | Can be used to override the python logging config used by the agent. |
+| LOGGING_CONF | None | Can be used to override the logging config used by the client. |
| POLL_TIMER | 10 | The time (in seconds) of the interval between polls. |
| SERVICE_AUTH_PROVIDER | None | The auth provider to use, each provider can have their own config, see available [auth providers](../auth/providers.md) for details. |
| IN_APP_INCLUDE | None | A string of comma (,) seperated values that indicate a package is part of the app. |
diff --git a/docs/index.md b/docs/index.md
index 34fbc4c..99a08c6 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -27,13 +27,13 @@ When using the dependency approach you simple add deep to you project and start
com.intergral.deep
deep
- 1.0-SNAPSHOT
+ LATEST
compile
com.intergral.deep
agent
- 1.0-SNAPSHOT
+ LATEST
provided
diff --git a/pom.xml b/pom.xml
index 7fc0056..c106ad9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -551,11 +551,13 @@
- org.junit.jupiter
- junit-jupiter
-
- 5.9.3
+ org.junit
+ junit-bom
+ 5.11.0
+ pom
+ import
+
org.mockito
mockito-core