diff --git a/README.md b/README.md
index 040df54..837d04a 100644
--- a/README.md
+++ b/README.md
@@ -485,6 +485,84 @@ INFO: `pomXml` option is a legacy plugin mechanism (developed in times when mave
provide anything except direct pom modification). Before pom plugin version 3.0 this was the main configuration
(applied with `pom` convention)
+###### Duplicate xml sections detection
+
+Groovy closure (`pomXml`) could also be useful when you want to avoid duplicates.
+
+For example, static model would always apply specified sections:
+
+```groovy
+maven.pom {
+ developers {
+ developer {
+ id = 'test'
+ name = 'Test Test'
+ }
+ }
+}
+
+maven.pom {
+ developers {
+ developer {
+ id = 'test'
+ name = 'Test Test'
+ }
+ }
+}
+```
+
+This would produce duplicate in the resulted xml:
+
+
+```xml
+
* ATTENTION: All properties assignment must be done as "method" - does not contain '='! + *
+ * NOTE: Duplicate sections would be detected and merged automatically (like developers). * * @param config user pom */