summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorTatu Lund <tatu@vaadin.com>2019-01-29 09:41:28 +0200
committerSun Zhe <31067185+ZheSun88@users.noreply.github.com>2019-03-06 10:30:35 +0200
commit89da017944070e9e2de6b032d6c3c2daad607695 (patch)
tree0ccd73a14bec6fd6067c47ac4b3c672d04c6f3cd /documentation
parent2d806a59509fa818b35e75998ed42df674c93122 (diff)
downloadvaadin-framework-89da017944070e9e2de6b032d6c3c2daad607695.tar.gz
vaadin-framework-89da017944070e9e2de6b032d6c3c2daad607695.zip
Added example of how to load bundles with Vaadin8 + compatibility libraries (#11439)
Diffstat (limited to 'documentation')
-rw-r--r--documentation/portal/portal-osgi.asciidoc17
1 files changed, 17 insertions, 0 deletions
diff --git a/documentation/portal/portal-osgi.asciidoc b/documentation/portal/portal-osgi.asciidoc
index dc03798fda..67086d72e1 100644
--- a/documentation/portal/portal-osgi.asciidoc
+++ b/documentation/portal/portal-osgi.asciidoc
@@ -94,3 +94,20 @@ java -jar blade.jar sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-th
java -jar blade.jar sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-liferay-integration/8.6.3/vaadin-liferay-integration-8.6.3.jar
java -jar blade.jar sh start file:<path_to_liferay_portlet.jar>
----
+
+However if you are using Vaadin 8 with compatibility libraries, the list above does not work, since you need to load compatibility versions of the bundles in addition to base versions in right order, here is example of that
+
+[source, shell]
+----
+blade sh start https://repo1.maven.org/maven2/org/jsoup/jsoup/1.11.3/jsoup-1.11.3.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/external/gentyref/1.2.0.vaadin1/gentyref-1.2.0.vaadin1.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-shared/8.6.4/vaadin-shared-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-compatibility-shared/8.6.4/vaadin-compatibility-shared-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-server/8.6.4/vaadin-server-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-compatibility-server/8.6.4/vaadin-compatibility-server-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-osgi-integration/8.6.4/vaadin-osgi-integration-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-compatibility-client-compiled/8.6.4/vaadin-compatibility-client-compiled-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-compatibility-themes/8.6.4/vaadin-compatibility-themes-8.6.4.jar
+blade sh start https://repo1.maven.org/maven2/com/vaadin/vaadin-liferay-integration/8.6.4/vaadin-liferay-integration-8.6.4.jar
+java -jar blade.jar sh start file:<path_to_liferay_portlet.jar>
+----