From 2ad1c654a6e9f0ddf6a7d6936fca40f855b8b0d9 Mon Sep 17 00:00:00 2001 From: Bradley Turek Date: Wed, 13 Jan 2021 10:54:08 -0700 Subject: [PATCH] Fixes frontend-maven-plugin snippet in `basic` module. It looks like, to maintain sanity, the configuration for the frontend-maven-plugin was defined in the root tutorial pom and the configuration is inherited by all the submodules, like `basic`. The problem was that one following along with the project needs that configuration. Now, we show the full configuration instead by including the frontend-maven-plugin configuration from the root POM instead of from `basic`'s POM. Should resolve some concerns described in issues #124, #128. --- basic/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic/README.adoc b/basic/README.adoc index 8ca248e..8890b5d 100644 --- a/basic/README.adoc +++ b/basic/README.adoc @@ -249,7 +249,7 @@ This section contains the barebones information to get the JavaScript bits off t ==== [source,xml,indent=0] ---- -include::pom.xml[tag=frontend-maven-plugin] +include::../pom.xml[tag=frontend-maven-plugin] ---- ====