|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | 6 | <parent> |
|
20 | 20 | <build> |
21 | 21 | <pluginManagement> |
22 | 22 | <plugins> |
23 | | - <!-- tag::frontend-maven-plugin[] --> |
24 | | - <plugin> |
25 | | - <groupId>com.github.eirslett</groupId> |
26 | | - <artifactId>frontend-maven-plugin</artifactId> |
27 | | - <version>1.9.1</version> |
28 | | - <configuration> |
29 | | - <installDirectory>target</installDirectory> |
30 | | - </configuration> |
31 | | - <executions> |
32 | | - <execution> |
33 | | - <id>install node and npm</id> |
34 | | - <goals> |
35 | | - <goal>install-node-and-npm</goal> |
36 | | - </goals> |
37 | | - <configuration> |
38 | | - <nodeVersion>v12.14.0</nodeVersion> |
39 | | - <npmVersion>6.13.4</npmVersion> |
40 | | - </configuration> |
41 | | - </execution> |
42 | | - <execution> |
43 | | - <id>npm install</id> |
44 | | - <goals> |
45 | | - <goal>npm</goal> |
46 | | - </goals> |
47 | | - <configuration> |
48 | | - <arguments>install</arguments> |
49 | | - </configuration> |
50 | | - </execution> |
51 | | - <execution> |
52 | | - <id>webpack build</id> |
53 | | - <goals> |
54 | | - <goal>webpack</goal> |
55 | | - </goals> |
56 | | - </execution> |
57 | | - </executions> |
58 | | - </plugin> |
59 | | - <!-- end::frontend-maven-plugin[] --> |
| 23 | + <!-- tag::frontend-maven-plugin[] --> |
| 24 | + <plugin> |
| 25 | + <groupId>com.github.eirslett</groupId> |
| 26 | + <artifactId>frontend-maven-plugin</artifactId> |
| 27 | + <version>1.9.1</version> |
| 28 | + <configuration> |
| 29 | + <installDirectory>target</installDirectory> |
| 30 | + </configuration> |
| 31 | + <executions> |
| 32 | + <execution> |
| 33 | + <id>install node and npm</id> |
| 34 | + <goals> |
| 35 | + <goal>install-node-and-npm</goal> |
| 36 | + </goals> |
| 37 | + <configuration> |
| 38 | + <nodeVersion>v12.14.0</nodeVersion> |
| 39 | + <npmVersion>6.13.4</npmVersion> |
| 40 | + </configuration> |
| 41 | + </execution> |
| 42 | + <execution> |
| 43 | + <id>npm install</id> |
| 44 | + <goals> |
| 45 | + <goal>npm</goal> |
| 46 | + </goals> |
| 47 | + <configuration> |
| 48 | + <arguments>install</arguments> |
| 49 | + </configuration> |
| 50 | + </execution> |
| 51 | + <execution> |
| 52 | + <id>webpack build</id> |
| 53 | + <goals> |
| 54 | + <goal>webpack</goal> |
| 55 | + </goals> |
| 56 | + </execution> |
| 57 | + </executions> |
| 58 | + </plugin> |
| 59 | + <!-- end::frontend-maven-plugin[] --> |
60 | 60 | </plugins> |
61 | 61 | </pluginManagement> |
62 | 62 | </build> |
|
0 commit comments