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
8 changes: 5 additions & 3 deletions scripts/generator/templates/template-dev-bundle-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,16 @@
<!--
vaadin-hybrid-dev-bundle must be a project dependency otherwise it will be built
after vaadin-dev-bundle because of modules configuration in root pom.
Configuring the dependency with provided scope will prevent it to be scanned by
flow-dev-bundle-plugin.
Configuring the dependency with test scope keeps the reactor ordering but prevents
flow-dev-bundle-plugin from finding the embedded reference dev-bundle on its
classpath (the plugin scans compile/runtime/system/provided scopes, not test),
so the local dev-bundle build is always performed instead of being skipped.
-->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>vaadin-hybrid-dev-bundle</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# Master Detail Layout Component (Experimental)
com.vaadin.experimental.masterDetailLayoutComponent=true

# Slider Component (Experimental)
com.vaadin.experimental.sliderComponent=true

# Badge Component (Experimental)
com.vaadin.experimental.badgeComponent=true
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
# Master Detail Layout Component (Experimental)
com.vaadin.experimental.masterDetailLayoutComponent=true

# Slider Component (Experimental)
com.vaadin.experimental.sliderComponent=true

# Badge Component (Experimental)
com.vaadin.experimental.badgeComponent=true
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
# Master Detail Layout Component (Experimental)
com.vaadin.experimental.masterDetailLayoutComponent=true

# Slider Component (Experimental)
com.vaadin.experimental.sliderComponent=true

# Badge Component (Experimental)
com.vaadin.experimental.badgeComponent=true
4 changes: 2 additions & 2 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"npmName": "@vaadin/field-highlighter"
},
"flow": {
"javaVersion": "25.2.0-alpha13"
"javaVersion": "25.2-SNAPSHOT"
},
"flow-cdi": {
"javaVersion": "16.0.1"
Expand All @@ -138,7 +138,7 @@
"npmName": "@vaadin/grid"
},
"hilla": {
"javaVersion": "25.2.0-alpha9"
"javaVersion": "25.2-SNAPSHOT"
},
"horizontal-layout": {
"jsVersion": "25.2.0-alpha13",
Expand Down
Loading