diff --git a/Readme.md b/Readme.md
index c18bfa1..84f4de0 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,7 +1,7 @@
Camel ISDS Component
=======================
[![Build Status](https://travis-ci.org/czgov/camel-isds.svg?branch=master)](https://travis-ci.org/czgov/camel-isds)
-[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.czgov/camel-isds/badge.svg)](https://maven-badges.herokuapp.com/maven-central/cz.abclinuxu.datoveschranky/isds)
+[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.czgov/camel-isds/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.czgov/camel-isds)
[![Javadocs](http://javadoc.io/badge/com.github.czgov/camel-isds.svg)](http://javadoc.io/doc/com.github.czgov/camel-isds)
@@ -21,7 +21,7 @@ from("isds:messages?environment=test&username=YOUR_LOGIN&password=YOUR_PASSWORD?
.to("file:dir-with-zfo-files");
```
-See component documentation [here](src/main/docs/isds.adoc).
+**See component documentation [here](src/main/docs/isds.adoc).**
## OSGi ready
diff --git a/src/main/docs/isds.adoc b/src/main/docs/isds.adoc
index 1473181..5ad49a0 100644
--- a/src/main/docs/isds.adoc
+++ b/src/main/docs/isds.adoc
@@ -7,12 +7,46 @@ for this component:
[source,xml]
-------------------------------------------------------
- com.github.czgov.isds
+ com.github.czgov
camel-isds
- 0.1.0-SNAPSHOT
+ ${use.latest.from.maven.central}
-------------------------------------------------------
+The recomended approach is to use some BOM (Bill of Materials)
+to avoid version conflicts.
+There is https://issues.apache.org/jira/browse/CAMEL-8502[issue]
+for real BOM in Camel project but `camel-parent` can be used until then.
+
+[source,xml]
+-------------------------------------------------------
+
+
+
+ org.apache.camel
+ camel-parent
+ ${camel.version
+ pom
+ import
+
+
+
+
+
+
+ org.apache.camel
+ camel-core
+
+
+
+ com.github.czgov
+ camel-isds
+ ${use.latest.from.maven.central}
+
+
+-------------------------------------------------------
+
+
### URI format
[source,java]
----