We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bad1ae4 commit 6e7d8abCopy full SHA for 6e7d8ab
pom.xml
@@ -264,6 +264,25 @@
264
</execution>
265
</executions>
266
</plugin>
267
+
268
+ <!-- add kotlin sources for the maven-source-plugin (need this for mixed java/kotlin sources) -->
269
+ <plugin>
270
+ <groupId>org.codehaus.mojo</groupId>
271
+ <artifactId>build-helper-maven-plugin</artifactId>
272
+ <executions>
273
+ <execution>
274
+ <phase>generate-sources</phase>
275
+ <goals>
276
+ <goal>add-source</goal>
277
+ </goals>
278
+ <configuration>
279
+ <sources>
280
+ <source>src/main/kotlin</source>
281
+ </sources>
282
+ </configuration>
283
+ </execution>
284
+ </executions>
285
+ </plugin>
286
</plugins>
287
</build>
288
0 commit comments