Skip to content
Snippets Groups Projects
Commit a00f80d7 authored by Homada.Boumedane's avatar Homada.Boumedane
Browse files

chore(dlcm-portal): pom.xml

add npm ci, npm generate models to exec-maven-plugin in order to run inside release cycle
parent 5177347c
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,37 @@
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<id>npm ci</id>
<goals>
<goal>exec</goal>
</goals>
<phase>validate</phase>
<configuration>
<executable>npm</executable>
<arguments>
<argument>ci</argument>
<argument>--</argument>
<argument>--prefer-offline</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>npm generate models</id>
<goals>
<goal>exec</goal>
</goals>
<phase>validate</phase>
<configuration>
<executable>npm</executable>
<arguments>
<argument>run</argument>
<argument>generate-models</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>npm build</id>
<goals>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment