Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 589d943

Browse files
committed
Add missing source artifacts
For spring-aot and spring-aot-maven-plugin.
1 parent 2552439 commit 589d943

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

spring-aot-maven-plugin/pom.xml

+13
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@
7373

7474
<build>
7575
<plugins>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-source-plugin</artifactId>
79+
<executions>
80+
<execution>
81+
<id>attach-sources</id>
82+
<goals>
83+
<goal>jar</goal>
84+
</goals>
85+
<phase>package</phase>
86+
</execution>
87+
</executions>
88+
</plugin>
7689
<plugin>
7790
<groupId>org.apache.maven.plugins</groupId>
7891
<artifactId>maven-jar-plugin</artifactId>

spring-aot/pom.xml

+13
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,19 @@
190190

191191
<build>
192192
<plugins>
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-source-plugin</artifactId>
196+
<executions>
197+
<execution>
198+
<id>attach-sources</id>
199+
<goals>
200+
<goal>jar</goal>
201+
</goals>
202+
<phase>package</phase>
203+
</execution>
204+
</executions>
205+
</plugin>
193206
<plugin>
194207
<groupId>org.codehaus.mojo</groupId>
195208
<artifactId>build-helper-maven-plugin</artifactId>

0 commit comments

Comments
 (0)