|
6 | 6 |
|
7 | 7 | <groupId>com.ithit.webdav.samples</groupId> |
8 | 8 | <artifactId>oraclestorage</artifactId> |
9 | | - <version>3.0.2107</version> |
| 9 | + <version>3.0.2114</version> |
10 | 10 | <packaging>war</packaging> |
11 | 11 |
|
12 | 12 | <properties> |
|
23 | 23 | <dependency> |
24 | 24 | <groupId>com.ithit.webdav.integration</groupId> |
25 | 25 | <artifactId>servlet-integration</artifactId> |
26 | | - <version>3.0.2107</version> |
| 26 | + <version>3.0.2114</version> |
27 | 27 | </dependency> |
28 | 28 | <dependency> |
29 | 29 | <groupId>commons-dbcp</groupId> |
|
93 | 93 | <dependency> |
94 | 94 | <groupId>com.ithit.webdav</groupId> |
95 | 95 | <artifactId>webdav-server</artifactId> |
96 | | - <version>3.0.2107</version> |
| 96 | + <version>3.0.2114</version> |
97 | 97 | </dependency> |
98 | 98 |
|
99 | 99 | <dependency> |
|
133 | 133 | <goal>copy-resources</goal> |
134 | 134 | </goals> |
135 | 135 | <configuration> |
136 | | - <outputDirectory>${project.build.directory}/oraclestorage-3.0.2107/META-INF</outputDirectory> |
| 136 | + <outputDirectory>${project.build.directory}/oraclestorage-3.0.2114/META-INF</outputDirectory> |
137 | 137 | <overwrite>true</overwrite> |
138 | 138 | <resources> |
139 | 139 | <resource> |
|
212 | 212 | <server>filesystem</server> |
213 | 213 | <port>11021</port> |
214 | 214 | <path>/</path> |
215 | | - <warSourceDirectory>target/oraclestorage-3.0.2107</warSourceDirectory> |
| 215 | + <warSourceDirectory>target/oraclestorage-3.0.2114</warSourceDirectory> |
216 | 216 | </configuration> |
217 | 217 | </plugin> |
218 | 218 | <plugin> |
|
239 | 239 | <delimiter>/</delimiter> |
240 | 240 | <delimiterType>row</delimiterType> |
241 | 241 | </configuration> |
| 242 | + </plugin> |
| 243 | + <plugin> |
| 244 | + <groupId>com.github.eirslett</groupId> |
| 245 | + <artifactId>frontend-maven-plugin</artifactId> |
| 246 | + <version>1.6</version> |
| 247 | + <executions> |
| 248 | + <execution> |
| 249 | + <id>install node and npm</id> |
| 250 | + <goals> |
| 251 | + <goal>install-node-and-npm</goal> |
| 252 | + </goals> |
| 253 | + <configuration> |
| 254 | + <escapeString>\</escapeString> |
| 255 | + <installDirectory>${java.io.tmpdir}</installDirectory> |
| 256 | + <nodeVersion>v4.6.0</nodeVersion> |
| 257 | + </configuration> |
| 258 | + </execution> |
| 259 | + <execution> |
| 260 | + <id>npm install</id> |
| 261 | + <goals> |
| 262 | + <goal>npm</goal> |
| 263 | + </goals> |
| 264 | + <phase>generate-resources</phase> |
| 265 | + <configuration> |
| 266 | + <escapeString>\</escapeString> |
| 267 | + <arguments>install</arguments> |
| 268 | + <workingDirectory>src/main/webapp/WEB-INF/wwwroot</workingDirectory> |
| 269 | + <installDirectory>${java.io.tmpdir}</installDirectory> |
| 270 | + </configuration> |
| 271 | + </execution> |
| 272 | + </executions> |
242 | 273 | </plugin> |
243 | 274 | </plugins> |
244 | 275 | </build> |
|
0 commit comments