aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiegoSanzVi <40760222+DiegoSanzVi@users.noreply.github.com>2018-12-17 13:24:50 +0200
committerSun Zhe <31067185+ZheSun88@users.noreply.github.com>2018-12-28 10:50:15 +0200
commite27042acf825ceb469656c54ee1f82eeca914c2c (patch)
tree6bdc00d7333802c07c70986aec78878b7a353343
parentf12a0f199a4e8b526a5a2b4d02e30f69b5c3517a (diff)
downloadvaadin-framework-e27042acf825ceb469656c54ee1f82eeca914c2c.tar.gz
vaadin-framework-e27042acf825ceb469656c54ee1f82eeca914c2c.zip
Error advanced-osgi formating (#11382)
Some snippets codes do not render properly.
-rw-r--r--documentation/advanced/advanced-osgi.asciidoc5
1 files changed, 5 insertions, 0 deletions
diff --git a/documentation/advanced/advanced-osgi.asciidoc b/documentation/advanced/advanced-osgi.asciidoc
index 0cb7a57539..8d8a99990f 100644
--- a/documentation/advanced/advanced-osgi.asciidoc
+++ b/documentation/advanced/advanced-osgi.asciidoc
@@ -21,11 +21,13 @@ Vaadin application for OSGi should be a valid bundle, i.e. it should be packaged
The easiest way to convert regular maven-based Vaadin application into a valid OSGi bundle consists of five steps:
* Change packaging type to `jar` in your `pom.xml`:
+
[source, xml]
----
<packaging>jar</packaging>
----
* Change the scope for all vaadin dependencies from default to `provided`, like this:
+
[source, xml]
----
<dependency>
@@ -35,6 +37,7 @@ The easiest way to convert regular maven-based Vaadin application into a valid O
</dependency>
----
* Add OSGi-related dependencies to the project
+
[source, xml]
----
<groupId>com.vaadin</groupId>
@@ -62,6 +65,7 @@ The easiest way to convert regular maven-based Vaadin application into a valid O
</dependency>
----
* Setup necessary plugins for building the project:
+
[source, xml]
----
<build>
@@ -93,6 +97,7 @@ The easiest way to convert regular maven-based Vaadin application into a valid O
</build>
----
* Add bundle script (`bnd.bnd`) into the project root folder:
+
[source, text]
----
Bundle-Name: ${project.name}