Skip to content

Commit ce6105d

Browse files
authored
Merge pull request #602 from xdev-software/update-from-template-merged
Update from template (auto-merged)
2 parents b5a7e6d + a20f218 commit ce6105d

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

flow-demo/pom.xml

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<mainClass>software.xdev.vaadin.Application</mainClass>
3030

3131
<!-- Dependency-Versions -->
32-
<vaadin.version>24.8.7</vaadin.version>
32+
<vaadin.version>24.8.8</vaadin.version>
3333

3434
<org.springframework.boot.version>3.5.5</org.springframework.boot.version>
3535
</properties>
@@ -152,6 +152,40 @@
152152
</pluginManagement>
153153

154154
<plugins>
155+
<plugin>
156+
<groupId>org.codehaus.mojo</groupId>
157+
<artifactId>exec-maven-plugin</artifactId>
158+
<version>3.5.1</version>
159+
<executions>
160+
<execution>
161+
<id>patch-package-json-overrides</id>
162+
<phase>compile</phase>
163+
<goals>
164+
<goal>java</goal>
165+
</goals>
166+
<configuration>
167+
<mainClass>software.xdev.vaadin.vpjo.Launcher</mainClass>
168+
<arguments>
169+
<argument>${project.basedir}</argument>
170+
<argument>${project.build.directory}</argument>
171+
</arguments>
172+
<includeProjectDependencies>false</includeProjectDependencies>
173+
<includePluginDependencies>true</includePluginDependencies>
174+
<executableDependency>
175+
<groupId>software.xdev</groupId>
176+
<artifactId>vaadin-package-json-optimizer</artifactId>
177+
</executableDependency>
178+
</configuration>
179+
</execution>
180+
</executions>
181+
<dependencies>
182+
<dependency>
183+
<groupId>software.xdev</groupId>
184+
<artifactId>vaadin-package-json-optimizer</artifactId>
185+
<version>1.0.0</version>
186+
</dependency>
187+
</dependencies>
188+
</plugin>
155189
<plugin>
156190
<groupId>com.vaadin</groupId>
157191
<artifactId>vaadin-maven-plugin</artifactId>
@@ -203,6 +237,19 @@
203237
</build>
204238

205239
<profiles>
240+
<profile>
241+
<id>dev</id>
242+
<activation>
243+
<activeByDefault>true</activeByDefault>
244+
</activation>
245+
<dependencies>
246+
<dependency>
247+
<groupId>software.xdev</groupId>
248+
<artifactId>vaadin-package-json-optimizer</artifactId>
249+
<version>1.0.0</version>
250+
</dependency>
251+
</dependencies>
252+
</profile>
206253
<profile>
207254
<id>production</id>
208255
<dependencies>

flow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5050

5151
<!-- Dependency-Versions -->
52-
<vaadin.version>24.8.7</vaadin.version>
52+
<vaadin.version>24.8.8</vaadin.version>
5353
</properties>
5454

5555
<dependencyManagement>

0 commit comments

Comments
 (0)