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.
2 parents 8933332 + bc09e87 commit 335726aCopy full SHA for 335726a
pom.xml
@@ -161,6 +161,25 @@
161
</mapping>
162
</configuration>
163
</plugin>
164
+ <!-- Add Kotlin source to the generated source JAR file-->
165
+ <plugin>
166
+ <groupId>org.codehaus.mojo</groupId>
167
+ <artifactId>build-helper-maven-plugin</artifactId>
168
+ <version>3.2.0</version>
169
+ <executions>
170
+ <execution>
171
+ <phase>generate-sources</phase>
172
+ <goals>
173
+ <goal>add-source</goal>
174
+ </goals>
175
+ <configuration>
176
+ <sources>
177
+ <source>src/main/kotlin</source>
178
+ </sources>
179
+ </configuration>
180
+ </execution>
181
+ </executions>
182
+ </plugin>
183
</plugins>
184
</build>
185
0 commit comments