AD
Size: a a a
AD
A
VK
A
A
AD
A
A
AD
A
A
AD
AD
A
A
A
A
AD
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<id>exec-npm-build</id>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>./client</workingDirectory>
<executable>npm</executable>
<arguments>
<argument>run</argument>
<argument>pack:prod</argument>
</arguments>
<skip>${skipNpm}</skip>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
AD
AM