Skip to content

Commit 63e25b2

Browse files
committed
Draft fixes
1 parent 0fda1ae commit 63e25b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Previously, I’ve already told you about our experience with Vaadin in the blog
3232

3333
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.
3434

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:
3636
```java
3737
plugins {
3838
id 'org.akhikhl.gretty' version '2.0.0'
@@ -132,7 +132,7 @@ applicationName = 'demo'
132132
mainClassName = 'demo.Launcher'
133133
```
134134

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.
136136

137137
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
138138

@@ -245,7 +245,7 @@ At the moment, we got all the pieces of the puzzle sitting right there on the ta
245245

246246
First, simply remove src/main/electron/index.html file. We will open our application UI right on the application start.
247247

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:
249249

250250
> gradle installDist
251251

0 commit comments

Comments
 (0)