Work on this project has been kindly sponsored by Inacta AG.
Builds the Jandex index of all Vaadin core libraries. This enables Vaadin-based apps to run on top of Quarkus+Undertow.
There are two artifacts built:
- vaadin-core-jandex builds the Jandex index for
vaadin-core
(only the open-source components) - vaadin-jandex builds the Jandex index for
vaadin
(both the open-source components and the pro components such as Board, GridPro, CRUD etc).
See the vaadin-quarkus example app for more details.
Browse the vaadin-jandex on Maven Central to see versions available. The vaadin-jandex library tracks Vaadin's release versioning; simply use the same vaadin-jandex as is your Vaadin version.
In order to add Vaadin Jandex index to your app, simply add the following dependency into your project:
<dependency>
<groupId>com.github.mvysny.vaadin-jandex</groupId>
<artifactId>vaadin-jandex</artifactId>
<version>14.6.3</version>
</dependency>
(or use vaadin-core-jandex
if you're only using vaadin-core components).
- git clone this project
- Edit
gradle.properties
and modify the Vaadin version to the version of your choice, e.g. 14.4.6. - Edit
build.gradle.kts
and set the version line toversion = "${properties["vaadin_version"]}"
(get rid of the -SNAPSHOT suffix) - Run
./gradlew publishToMavenLocal
. The library is now installed in your local repo. - Modify your app's
pom.xml
and add the dependency on this library:
<dependency>
<groupId>com.github.mvysny.vaadin-jandex</groupId>
<artifactId>vaadin-jandex</artifactId>
<version>14.4.6</version>
</dependency>
(or use vaadin-core-jandex
if you're only using vaadin-core components).
- Run your vaadin-quarkus project - it should now start as usual.
This project is just temporary; the goal is to have the Jandex index merged into Vaadin artifacts themselves. In order to achieve that, please vote for the following tickets:
- Edit
gradle.properties
and setvaadin_version
to the desired version. - Edit
build.gradle.kts
and remove-SNAPSHOT
in theversion=
stanza - Commit with the commit message of simply being the desired Vaadin version.
- git tag the commit with the same tag name as the commit message above.
git push
,git push --tags
- Run
./gradlew clean build publish
then follow the release procedure on OSSRH/MavenCentral - Add the
-SNAPSHOT
back and commit and push.
See License.