You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Previously, I’ve already told you about our experience with Vaadin in the blog
32
32
33
33
For me, It is battle proven Java framework that enables us to build complex UI without a single line of HTML and JS. Let’s employ it as a basis for our UI.
34
34
35
-
I will create a simple Vaadin application from scratch. First, we need to add necessary dependencies to build.gradle script, enable war and gretty plugins:
35
+
I will create a simple Vaadin application from scratch. First, we need to add necessary dependencies to build.gradle script, enable `war` and `gretty` plugins:
36
36
```java
37
37
plugins {
38
38
id 'org.akhikhl.gretty' version '2.0.0'
@@ -132,7 +132,7 @@ applicationName = 'demo'
132
132
mainClassName ='demo.Launcher'
133
133
```
134
134
135
-
I’ve added jetty jars to the project dependencies and replaced war and gretty plugins with application plugin. The only thing left to do is to implement demo.Launcher class.
135
+
I’ve added jetty jars to the project dependencies and replaced `war` and `gretty` plugins with `application` plugin. The only thing left to do is to implement `demo.Launcher` class.
136
136
137
137
That’s quite easy task because the process of Jetty embedding is already described in the official manual: http://www.eclipse.org/jetty/documentation/current/embedding-jetty.html
138
138
@@ -245,7 +245,7 @@ At the moment, we got all the pieces of the puzzle sitting right there on the ta
245
245
246
246
First, simply remove src/main/electron/index.html file. We will open our application UI right on the application start.
247
247
248
-
Then, build the application using Gradle and install it to the build/install directory:
248
+
Then, build the application using Gradle and install it to the `build/install` directory:
0 commit comments