Add non-compiled sources to runtime before packaging sources jar.

This commit is contained in:
Ilya Gorbunov
2016-10-24 17:39:08 +03:00
parent 2fa98323f1
commit 2e7456c56e
+19
View File
@@ -85,6 +85,25 @@
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-native-sources</id>
<phase>prepare-package</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/../../../core/builtins/native</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>