File tree Expand file tree Collapse file tree 6 files changed +10
-8
lines changed
vaadin-editable-label-demo Expand file tree Collapse file tree 6 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 2121
2222 strategy :
2323 matrix :
24- java : [17]
24+ java : [17, 21 ]
2525 distribution : [temurin]
2626
2727 steps :
Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ jobs:
105105 <artifactId>${{ env.PRIMARY_MAVEN_MODULE }}</artifactId>
106106 <version>${{ steps.version.outputs.release }}</version>
107107 </dependency>
108+
109+ ### Additional notes
110+ * [Spring-Boot] You may have to include ``software/xdev`` inside [``vaadin.whitelisted-packages``](https://vaadin.com/docs/latest/integrations/spring/configuration#configure-the-scanning-of-packages)
108111 ```
109112
110113 publish_central : # Publish the code to central
Original file line number Diff line number Diff line change 8686 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
8787 run : |
8888 gh_pr_up() {
89- gh pr create "$ @" || gh pr edit "$@"
89+ gh pr create -H "${{ env.UPDATE_BRANCH }}" "$ @" || (git checkout "${{ env.UPDATE_BRANCH }}" && gh pr edit "$@")
9090 }
9191 gh_pr_up -B "${{ steps.main.outputs.current_branch }}" \
92- -H "${{ env.UPDATE_BRANCH }}" \
9392 --title "Update from template" \
9493 --body "An automated PR to sync changes from the template into this repo"
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ We also encourage you to read the [contribution instructions by GitHub](https://
1919### Software Requirements
2020You should have the following things installed:
2121* Git
22- * Java 17 - should be as unmodified as possible (Recommended: [ Eclipse Adoptium] ( https://adoptium.net/temurin/releases/ ) )
22+ * Java 21 - should be as unmodified as possible (Recommended: [ Eclipse Adoptium] ( https://adoptium.net/temurin/releases/ ) )
2323* Maven
2424
2525### Recommended setup
Original file line number Diff line number Diff line change 2626 <mainClass >software.xdev.vaadin.Application</mainClass >
2727
2828 <!-- Dependency-Versions -->
29- <vaadin .version>24.1.11 </vaadin .version>
29+ <vaadin .version>24.2.2 </vaadin .version>
3030
31- <org .springframework.boot.version>3.1.4 </org .springframework.boot.version>
31+ <org .springframework.boot.version>3.1.5 </org .springframework.boot.version>
3232 </properties >
3333
3434 <dependencyManagement >
Original file line number Diff line number Diff line change 4949 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
5050
5151 <!-- Dependency-Versions -->
52- <vaadin .version>24.1.11 </vaadin .version>
52+ <vaadin .version>24.2.2 </vaadin .version>
5353 </properties >
5454
5555 <dependencyManagement >
167167 <plugin >
168168 <groupId >org.apache.maven.plugins</groupId >
169169 <artifactId >maven-javadoc-plugin</artifactId >
170- <version >3.6.0 </version >
170+ <version >3.6.2 </version >
171171 <executions >
172172 <execution >
173173 <id >attach-javadocs</id >
You can’t perform that action at this time.
0 commit comments