Skip to content

Commit

Permalink
Fix kotlin test sources (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvosper authored Apr 12, 2019
1 parent f340cea commit 77b55a6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions components/proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,25 @@
</dependency>
</dependencies>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-kotlin-test-sources</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>src/test/kotlin</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 77b55a6

Please sign in to comment.