Skip to content

Commit

Permalink
Fix RAT failures.
Browse files Browse the repository at this point in the history
Signed-off-by: Łukasz Dywicki <[email protected]>
  • Loading branch information
splatch committed Dec 18, 2023
1 parent d67eec1 commit 32be906
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions plc4j/drivers/opcua/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,26 @@
</excludes>
</configuration>
</plugin>
<!-- Check if all source files have the required apache license headers -->
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<executions>
<execution>
<id>license-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<!-- exclude static test resources from release checks -->
<exclude>src/test/resources/chunk-calculation*.csv</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 32be906

Please sign in to comment.