Skip to content

Commit

Permalink
Prevent modified files with Maven builds (#1152)
Browse files Browse the repository at this point in the history
Related to #241

Signed-off-by: Wouter Born <github@maindrain.net>
  • Loading branch information
wborn committed Sep 18, 2021
1 parent c6bc42e commit 738c399
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ target/
src-gen/
bin/
.metadata/
.openapi-generator/
**/.settings/org.eclipse.*
features/*/src/main/history
npm-debug.log
Expand Down
5 changes: 4 additions & 1 deletion bundles/org.openhab.ui.habot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,13 @@
</execution>

<execution>
<id>npm install</id>
<id>npm ci</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>ci</arguments>
</configuration>
</execution>

<execution>
Expand Down
4 changes: 2 additions & 2 deletions bundles/org.openhab.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,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>

Expand Down

0 comments on commit 738c399

Please sign in to comment.