File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
template-placeholder-demo Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 137
137
</pluginManagement >
138
138
139
139
<plugins >
140
+ <plugin >
141
+ <groupId >org.codehaus.mojo</groupId >
142
+ <artifactId >exec-maven-plugin</artifactId >
143
+ <version >3.5.1</version >
144
+ <executions >
145
+ <execution >
146
+ <id >patch-package-json-overrides</id >
147
+ <phase >compile</phase >
148
+ <goals >
149
+ <goal >java</goal >
150
+ </goals >
151
+ <configuration >
152
+ <mainClass >software.xdev.vaadin.vpjo.Launcher</mainClass >
153
+ <arguments >
154
+ <argument >${project.basedir} </argument >
155
+ <argument >${project.build.directory} </argument >
156
+ </arguments >
157
+ <includeProjectDependencies >false</includeProjectDependencies >
158
+ <includePluginDependencies >true</includePluginDependencies >
159
+ <executableDependency >
160
+ <groupId >software.xdev</groupId >
161
+ <artifactId >vaadin-package-json-optimizer</artifactId >
162
+ </executableDependency >
163
+ </configuration >
164
+ </execution >
165
+ </executions >
166
+ <dependencies >
167
+ <dependency >
168
+ <groupId >software.xdev</groupId >
169
+ <artifactId >vaadin-package-json-optimizer</artifactId >
170
+ <version >1.0.0</version >
171
+ </dependency >
172
+ </dependencies >
173
+ </plugin >
140
174
<plugin >
141
175
<groupId >com.vaadin</groupId >
142
176
<artifactId >vaadin-maven-plugin</artifactId >
188
222
</build >
189
223
190
224
<profiles >
225
+ <profile >
226
+ <id >dev</id >
227
+ <activation >
228
+ <activeByDefault >true</activeByDefault >
229
+ </activation >
230
+ <dependencies >
231
+ <dependency >
232
+ <groupId >software.xdev</groupId >
233
+ <artifactId >vaadin-package-json-optimizer</artifactId >
234
+ <version >1.0.0</version >
235
+ </dependency >
236
+ </dependencies >
237
+ </profile >
191
238
<profile >
192
239
<id >production</id >
193
240
<dependencies >
You can’t perform that action at this time.
0 commit comments