Add kotlin test sources to build-helper-mvn-plugin

Intellij doesn't pick up on the sources
correctly and classifies them as resources otherwise
This commit is contained in:
Clément Fournier 2020-01-11 20:33:58 +01:00
parent 271efff289
commit f7bd2d54b3

View File

@ -82,6 +82,17 @@
</sources>
</configuration>
</execution>
<execution>
<id>add-kotlin-test-sources</id>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/test/kotlin</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>