Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
9b5bb49
Update org.springframework.boot.version to v3.5.3
xdev-renovate Jun 21, 2025
67c2816
Update dependency com.puppycrawl.tools:checkstyle to v10.25.1
xdev-renovate Jun 22, 2025
861794f
Update dependency org.codehaus.mojo:flatten-maven-plugin to v1.7.1
xdev-renovate Jun 22, 2025
754718d
Merge pull request #165 from xdev-software/renovate/org.codehaus.mojo…
AB-xdev Jun 23, 2025
3083100
Merge pull request #164 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Jun 23, 2025
7b00fab
Merge pull request #348 from xdev-software/renovate/org.springframewo…
AB-xdev Jun 23, 2025
49e1f93
Merge branch 'master' into update-from-template-merged
xdev-gh-bot Jun 24, 2025
9a0c700
Update vaadin.version to v24.8.0
xdev-renovate Jun 24, 2025
f7426d2
Update dependency com.puppycrawl.tools:checkstyle to v10.26.0
xdev-renovate Jun 25, 2025
9d8d2de
Update dependency org.apache.maven.plugins:maven-pmd-plugin to v3.27.0
xdev-renovate Jun 26, 2025
b73f417
Merge pull request #166 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Jun 26, 2025
3ba1bca
Merge pull request #167 from xdev-software/renovate/org.apache.maven.…
AB-xdev Jun 26, 2025
f1a7bd9
Merge branch 'master' into update-from-template-merged
xdev-gh-bot Jun 26, 2025
44bcf68
Merge pull request #347 from xdev-software/renovate/vaadin.version
AB-xdev Jun 26, 2025
1a18c20
Changes for Vaadin 24.8
AB-xdev Jun 26, 2025
d38b73d
Sync naming
AB-xdev Jun 26, 2025
c22da5f
Merge branch 'master' into update-from-template-merged
xdev-gh-bot Jun 27, 2025
f6ea9a6
Merge branch 'develop' into update-from-template-merged
xdev-gh-bot Jun 30, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
needs: [check-code]
timeout-minutes: 10
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
git push origin --tags

- name: Create Release
id: create_release
id: create-release
uses: shogo82148/actions-create-release@4661dc54f7b4b564074e9fbf73884d960de569a3 # v1
with:
tag_name: v${{ steps.version.outputs.release }}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.25.0</version>
<version>10.26.0</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -70,7 +70,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.26.0</version>
<version>3.27.0</version>
<configuration>
<includeTests>true</includeTests>
<printFailingErrors>true</printFailingErrors>
Expand Down
54 changes: 52 additions & 2 deletions vaadin-maps-leaflet-flow-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
<mainClass>software.xdev.vaadin.Application</mainClass>

<!-- Dependency-Versions -->
<vaadin.version>24.7.6</vaadin.version>
<vaadin.version>24.8.0</vaadin.version>

<org.springframework.boot.version>3.5.0</org.springframework.boot.version>
<org.springframework.boot.version>3.5.3</org.springframework.boot.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -62,10 +62,35 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-core</artifactId>
<exclusions>
<!-- No Hilla is used -->
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>hilla-dev</artifactId>
</exclusion>
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>copilot</artifactId>
</exclusion>
<!-- Lumo is used instead -->
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-material-theme</artifactId>
</exclusion>
<!-- React is not enabled and thus not required -->
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>flow-react</artifactId>
</exclusion>
<!-- There is like 10 people on the planet that need this by default -->
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>collaboration-engine</artifactId>
</exclusion>
<!-- No Wildfly used here -->
<exclusion>
<groupId>com.vaadin.servletdetector</groupId>
<artifactId>throw-if-servlet3</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -79,6 +104,7 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-spring-boot-starter</artifactId>
<exclusions>
<!-- No Hilla is used -->
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>hilla</artifactId>
Expand Down Expand Up @@ -122,6 +148,30 @@
</goals>
</execution>
</executions>
<configuration>
<!-- Can only be true if hilla is used -->
<!-- Takes a few seconds to scan everything for hilla -->
<frontendHotdeploy>false</frontendHotdeploy>
<!-- Prevent scanning for react (not used) -->
<reactEnable>false</reactEnable>
<!-- Only scan required -->
<frontendScanner>
<includes>
<include>
<groupId>software.xdev</groupId>
<artifactId>*vaadin*</artifactId>
</include>
<include>
<groupId>com.vaadin</groupId>
</include>
</includes>
<excludes>
<exclude>
<groupId>com.vaadin.external*</groupId>
</exclude>
</excludes>
</frontendScanner>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
8 changes: 4 additions & 4 deletions vaadin-maps-leaflet-flow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- Dependency-Versions -->
<vaadin.version>24.7.6</vaadin.version>
<vaadin.version>24.8.0</vaadin.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -220,7 +220,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.7.0</version>
<version>1.7.1</version>
<configuration>
<flattenMode>ossrh</flattenMode>
</configuration>
Expand Down Expand Up @@ -282,7 +282,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.25.0</version>
<version>10.26.0</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -307,7 +307,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.26.0</version>
<version>3.27.0</version>
<configuration>
<includeTests>true</includeTests>
<printFailingErrors>true</printFailingErrors>
Expand Down