Ignore Java files in `node_modules/` on the build phase.
fixes #11822. Signed-off-by: Masaki Muranaka <monaka@monami-ya.com>6.19.x
parent
c4ac0603fa
commit
83fb46de5e
|
|
@ -36,6 +36,15 @@
|
|||
<build>
|
||||
<finalName>dashboard-war</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>node_modules/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue