|
19 | 19 |
|
20 | 20 | <properties> |
21 | 21 | <vaadin.version>25.0.0-beta5</vaadin.version> |
22 | | - <flow.version>9.0.1</flow.version> |
23 | 22 | <maven.compiler.source>21</maven.compiler.source> |
24 | 23 | <maven.compiler.target>21</maven.compiler.target> |
25 | 24 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
26 | 25 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
27 | | - <failOnMissingWebXml>false</failOnMissingWebXml> |
28 | 26 | </properties> |
29 | 27 | <dependencyManagement> |
30 | 28 | <dependencies> |
|
38 | 36 | </dependencies> |
39 | 37 | </dependencyManagement> |
40 | 38 |
|
41 | | - |
42 | 39 | <repositories> |
43 | 40 | <repository> |
44 | 41 | <id>Vaadin Directory</id> |
|
112 | 109 | <version>${project.version}</version> |
113 | 110 | </dependency> |
114 | 111 |
|
115 | | - <dependency> |
116 | | - <groupId>com.vaadin</groupId> |
117 | | - <artifactId>flow-component-demo-helpers</artifactId> |
118 | | - <version>${flow.version}</version> |
119 | | - </dependency> |
120 | | - |
121 | 112 | <dependency> |
122 | 113 | <groupId>org.slf4j</groupId> |
123 | 114 | <artifactId>slf4j-simple</artifactId> |
124 | 115 | </dependency> |
125 | | - |
126 | | - <dependency> |
127 | | - <groupId>javax.servlet</groupId> |
128 | | - <artifactId>javax.servlet-api</artifactId> |
129 | | - <version>3.1.0</version> |
130 | | - </dependency> |
131 | | - |
132 | 116 | </dependencies> |
133 | 117 |
|
134 | 118 | <build> |
|
146 | 130 | <plugins> |
147 | 131 | <!-- Jetty plugin for easy testing without a server --> |
148 | 132 | <plugin> |
149 | | - <groupId>org.eclipse.jetty</groupId> |
150 | | - <artifactId>jetty-maven-plugin</artifactId> |
151 | | - <version>11.0.26</version> |
| 133 | + <groupId>org.eclipse.jetty.ee11</groupId> |
| 134 | + <artifactId>jetty-ee11-maven-plugin</artifactId> |
| 135 | + <version>12.1.4</version> |
152 | 136 | <configuration> |
153 | 137 | <stopKey>${project.artifactId}</stopKey> |
154 | 138 | <stopPort>8081</stopPort> |
|
164 | 148 | <goals> |
165 | 149 | <goal>prepare-frontend</goal> |
166 | 150 | </goals> |
167 | | - <configuration> |
168 | | - <convertHtml>false</convertHtml> |
169 | | - </configuration> |
170 | 151 | </execution> |
171 | 152 | </executions> |
172 | 153 | </plugin> |
|
182 | 163 | <groupId>org.apache.maven.plugins</groupId> |
183 | 164 | <artifactId>maven-war-plugin</artifactId> |
184 | 165 | <version>3.5.0</version> |
| 166 | + <configuration> |
| 167 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 168 | + </configuration> |
185 | 169 | </plugin> |
186 | 170 | <plugin> |
187 | 171 | <groupId>org.apache.maven.plugins</groupId> |
|
246 | 230 | </build> |
247 | 231 | </profile> |
248 | 232 | </profiles> |
249 | | - |
250 | 233 | </project> |
0 commit comments