From cbaa97311802aae42aa3e19660e37e9336f8f81e Mon Sep 17 00:00:00 2001 From: Maros Marsalek Date: Fri, 21 Oct 2016 12:24:40 +0200 Subject: Fix attributes substitution in release_notes Change-Id: I96ae1f6e5b21bf2db010758c8c0f4267aef59e93 Signed-off-by: Maros Marsalek Signed-off-by: Marek Gradzki --- .../src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc') diff --git a/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc b/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc index 3f03c0b48..ee148e5e5 100644 --- a/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc +++ b/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc @@ -58,7 +58,7 @@ Now rebuild the *-api module. === JVpp dependency Another important thing that the plugin needs is dependency to VPP's JVpp (Java APIs). To do so, just update *-impl's pom.xml with: -[source,xml] +[source,xml,subs="+attributes"] ---- @@ -70,7 +70,7 @@ Another important thing that the plugin needs is dependency to VPP's JVpp (Java Also add vpp-translate-utils dependency so that writing translation code is easier: -[source,xml] +[source,xml,subs="+attributes"] ---- io.fd.honeycomb.vpp @@ -516,7 +516,8 @@ In order to add this new plugin into vpp-integration: * clone honeycomb codebase (since that's the home of vpp-integration distribution) * add a dependency for this sample plugin in vpp-integration distribution (honeycomb/vpp-integration/minimal-distribution/pom.xml): -[source,xml] + +[source,xml,subs="+attributes"] ---- io.fd.honeycomb.tutorial @@ -524,6 +525,7 @@ In order to add this new plugin into vpp-integration: {project-version} ---- + * modify Main of vpp-integration distribution to include sample-plugin (/home/mmarsale/Projects/honeycomb/vpp-integration/minimal-distribution/src/main/java/io/fd/honeycomb/vpp/integration/distro/Main.java): [source,java] ---- -- cgit 1.2.3-korg