Check for license headers in kotlin source files

This commit is contained in:
Andreas Dangel
2020-07-31 20:26:27 +02:00
parent fc99e92a7e
commit acf58f1887
18 changed files with 96 additions and 26 deletions

View File

@@ -18,6 +18,15 @@
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
</testResource>
<!-- Adding kotlin files to test resources, so that checkstyle verifies the license header -->
<testResource>
<directory>${project.basedir}/src/main/kotlin</directory>
</testResource>
</testResources>
<plugins>
<!-- The kotlin plugin has to run before the java plugin-->
<plugin>