Skip to content
Closed
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
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.1</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
52 changes: 51 additions & 1 deletion template-placeholder-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<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.3</org.springframework.boot.version>
</properties>
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
6 changes: 3 additions & 3 deletions template-placeholder/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 @@ -270,7 +270,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.25.1</version>
<version>10.26.0</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -295,7 +295,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