Move common config to parent pom

This commit is contained in:
Andreas Dangel
2020-07-31 22:43:52 +02:00
parent acf58f1887
commit 1c6bd4e715
2 changed files with 9 additions and 9 deletions

View File

@ -12,15 +12,6 @@
</parent>
<build>
<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/test/kotlin</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>

View File

@ -111,6 +111,15 @@
</properties>
<build>
<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/test/kotlin</directory>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>