Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion articles/hilla/lit/guides/upgrading/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,16 @@

== Upgrading from 24 to 25

From version 25.0 onwards, Hilla is no longer included in `vaadin-spring-boot-starter`. To use Hilla, add the `hilla-spring-boot-starter` dependency instead.
From version 25.0 onwards, Hilla is no longer included in `vaadin-spring-boot-starter`. In case you have react views, add the `hilla-spring-boot-starter` dependency to work together with `vaadin-spring-boot-starter`.

Check failure on line 20 in articles/hilla/lit/guides/upgrading/index.adoc

View workflow job for this annotation

GitHub Actions / lint

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'onwards'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'onwards'?", "location": {"path": "articles/hilla/lit/guides/upgrading/index.adoc", "range": {"start": {"line": 20, "column": 19}}}, "severity": "ERROR"}

.pom.xml
[source,xml]
----
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-spring-boot-starter</artifactId>
</dependency>
<!-- optional if you want to add React views -->
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>hilla-spring-boot-starter</artifactId>
Expand Down
7 changes: 6 additions & 1 deletion articles/upgrading/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,16 @@ If you're using a Gradle wrapper, update it to version 8.14 by executing the fol
For Java 21 compatibility, you may need to update the `sourceCompatibility` setting in your project's build file to version 21. Check your project's build file and make any necessary changes.

== Hilla
Vaadin Spring Boot Starter no longer includes Hilla by default. To use Hilla, replace `vaadin-spring-boot-starter` with `hilla-spring-boot-starter` in your build configuration.
Vaadin Spring Boot Starter no longer includes Hilla by default. In case you have react views, add `hilla-spring-boot-starter` to work together with `hilla-spring-boot-starter` in your build configuration.

.pom.xml
[source,xml]
----
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-spring-boot-starter</artifactId>
</dependency>
<!-- optional if you want to add React views -->
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>hilla-spring-boot-starter</artifactId>
Expand Down