We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dd2bc4 commit 661c959Copy full SHA for 661c959
vaadin-addon-template-demo/pom.xml
@@ -134,16 +134,19 @@
134
<profiles>
135
<profile>
136
<id>production</id>
137
- <properties>
138
- <vaadin.productionMode>true</vaadin.productionMode>
139
- </properties>
140
<dependencies>
+ <!-- Exclude development dependencies from production -->
141
<dependency>
142
<groupId>com.vaadin</groupId>
143
- <artifactId>flow-server-production-mode</artifactId>
+ <artifactId>vaadin-core</artifactId>
+ <exclusions>
+ <exclusion>
144
+ <groupId>com.vaadin</groupId>
145
+ <artifactId>vaadin-dev</artifactId>
146
+ </exclusion>
147
+ </exclusions>
148
</dependency>
149
</dependencies>
-
150
<build>
151
<plugins>
152
<plugin>
0 commit comments