Prevent modified files with Maven builds (#1152)
Related to #241 Signed-off-by: Wouter Born <github@maindrain.net>3.1.x
parent
dd01bbe65b
commit
9a659a585c
|
@ -4,6 +4,7 @@ target/
|
|||
src-gen/
|
||||
bin/
|
||||
.metadata/
|
||||
.openapi-generator/
|
||||
**/.settings/org.eclipse.*
|
||||
features/*/src/main/history
|
||||
npm-debug.log
|
||||
|
|
|
@ -85,10 +85,13 @@
|
|||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>npm install</id>
|
||||
<id>npm ci</id>
|
||||
<goals>
|
||||
<goal>npm</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<arguments>ci</arguments>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
|
|
|
@ -51,12 +51,12 @@
|
|||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>npm install</id>
|
||||
<id>npm ci</id>
|
||||
<goals>
|
||||
<goal>npm</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<arguments>install</arguments>
|
||||
<arguments>ci</arguments>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
|
|
Loading…
Reference in New Issue