Skip to content

Commit

Permalink
fixup! Include sources in kotlin-osgi-bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapchicoma committed Jan 7, 2025
1 parent d25aa49 commit 1e74347
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@
<excludes>**/MANIFEST.MF</excludes>
</configuration>
</execution>
<execution>
<id>unpack-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<classifier>sources</classifier>
<includeScope>compile</includeScope>
<includeGroupIds>${project.parent.groupId}</includeGroupIds>
<outputDirectory>${project.build.directory}/sources</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>

Expand Down Expand Up @@ -86,15 +99,14 @@
</configuration>
</execution>
<execution>
<id>empty-sources-jar</id>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<skipIfEmpty>false</skipIfEmpty>
<classifier>sources</classifier>
<classesDirectory>${basedir}/sources</classesDirectory>
<classesDirectory>${project.build.directory}/sources</classesDirectory>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 1e74347

Please sign in to comment.