Skip to content

Commit 2870d03

Browse files
committedJan 17, 2024
Fix source jars required for bundles
1 parent c046200 commit 2870d03

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed
 

‎pom.xml

+16-3
Original file line numberDiff line numberDiff line change
@@ -723,6 +723,22 @@
723723
<module>jline</module>
724724
<module>jansi</module>
725725
</modules>
726+
<build>
727+
<plugins>
728+
<plugin>
729+
<groupId>org.apache.maven.plugins</groupId>
730+
<artifactId>maven-source-plugin</artifactId>
731+
<executions>
732+
<execution>
733+
<id>source-jar</id>
734+
<goals>
735+
<goal>jar-no-fork</goal>
736+
</goals>
737+
</execution>
738+
</executions>
739+
</plugin>
740+
</plugins>
741+
</build>
726742
</profile>
727743

728744
<profile>
@@ -812,17 +828,14 @@
812828
<plugin>
813829
<groupId>org.apache.maven.plugins</groupId>
814830
<artifactId>maven-source-plugin</artifactId>
815-
<version>3.3.0</version>
816831
</plugin>
817832
<plugin>
818833
<groupId>org.apache.maven.plugins</groupId>
819834
<artifactId>maven-javadoc-plugin</artifactId>
820-
<version>3.6.0</version>
821835
</plugin>
822836
<plugin>
823837
<groupId>org.apache.maven.plugins</groupId>
824838
<artifactId>maven-gpg-plugin</artifactId>
825-
<version>3.1.0</version>
826839
</plugin>
827840
</plugins>
828841
</build>

0 commit comments

Comments
 (0)
Please sign in to comment.