Skip to content

Commit

Permalink
Update Vaadin 14.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
moewes committed Oct 5, 2019
1 parent 697cf78 commit f0e640a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
An experimental Quarkus-Extension to use Vaadin with Quarkus.

Quarkus: 0.23.2
Vaadin: 14.0.5
Vaadin: 14.0.7

# How to start

Expand All @@ -18,7 +18,7 @@ See example for how to use it with quarkus.
Switch into example directory and type:

````
mvn clean package quarkus:dev -Dvaadin.compatibilityMode=true
mvn clean package quarkus:dev
````

Open Browser http://localhost:8080
Expand All @@ -30,7 +30,7 @@ Switch into example directory and type:
````
mvn clean package
java -Dvaadin.compatibilityMode=true -jar ./target/quarkus-vaadin-extension-example-0.1.0-SNAPSHOT-runner.jar
java -jar ./target/quarkus-vaadin-extension-example-0.1.0-SNAPSHOT-runner.jar
````

Open Browser http://localhost:8080
Expand All @@ -42,7 +42,7 @@ Switch into example directory and type:
````
mvn clean package -Pnative
./target/quarkus-vaadin-extension-example-0.1.0-SNAPSHOT-runner -Dvaadin.compatibilityMode=true
./target/quarkus-vaadin-extension-example-0.1.0-SNAPSHOT-runner
````

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ void reflection(BuildProducer<ReflectiveClassBuildItem> reflectiveClass) {
"com.vaadin.flow.component.details.Details$OpenedChangeEvent",
"com.vaadin.flow.component.details.Details",
"com.vaadin.flow.router.InternalServerError",
"com.vaadin.flow.router.RouteNotFoundError",
"com.vaadin.flow.theme.lumo.Lumo")
.constructors(true)
.methods(true)
Expand Down
3 changes: 2 additions & 1 deletion example/src/main/resources/META-INF/resources/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@




</style>
</head>
<body>
Expand Down Expand Up @@ -154,7 +155,7 @@ <h3>Application</h3>
<ul>
<li>Version: 1.0-SNAPSHOT</li>
<li>Quarkus Version: 0.23.2</li>
<li>Vaadin Version: 14.0.5</li>
<li>Vaadin Version: 14.0.7</li>
</ul>
</div>
<div class="right-section">
Expand Down
2 changes: 1 addition & 1 deletion runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<vaadin.version>14.0.5</vaadin.version>
<vaadin.version>14.0.7</vaadin.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit f0e640a

Please sign in to comment.