diff --git a/maven-plugin/docs/examples/5-minute-tutorial/README.md b/maven-plugin/docs/examples/5-minute-tutorial/README.md
new file mode 100644
index 000000000..52dce31ac
--- /dev/null
+++ b/maven-plugin/docs/examples/5-minute-tutorial/README.md
@@ -0,0 +1,22 @@
+
+To run this example:
+ - Have [Apache Maven](https://maven.apache.org) installed
+ - Have [H2 Sakila database](https://github.com/hibernate/sakila-h2) running
+ - Issue one of the following commands from a command-line window opened in this folder:
+ - `mvn generate-sources -Dh2.version=${h2.version} -Dproject.version=${hibernate.version}`
+ - `mvn hbm2java -Dh2.version=${h2.version} -Dproject.version=${hibernate.version}`
+
\ No newline at end of file
diff --git a/maven-plugin/docs/examples/5-minute-tutorial/pom.xml b/maven-plugin/docs/examples/5-minute-tutorial/pom.xml
index b454786eb..fe1024221 100644
--- a/maven-plugin/docs/examples/5-minute-tutorial/pom.xml
+++ b/maven-plugin/docs/examples/5-minute-tutorial/pom.xml
@@ -27,7 +27,7 @@
com.h2database
h2
- @h2.version@
+ ${h2.version}
@@ -36,7 +36,7 @@
org.hibernate
hibernate-tools-maven-plugin
- @project.version@
+ ${hibernate.version}
Entity generation
diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml
index 882c69361..0d6bd6f9c 100644
--- a/maven-plugin/pom.xml
+++ b/maven-plugin/pom.xml
@@ -19,6 +19,8 @@
false
false
+
+ ${project.version}
@@ -128,6 +130,8 @@
+
maven-invoker-plugin
${maven-invoker-plugin.version}
@@ -143,7 +147,7 @@
-
+
org.apache.maven.plugins
maven-failsafe-plugin
@@ -214,7 +218,7 @@
- @*@
+ ${*}