Skip to content

Commit 4595a01

Browse files
committed
Add maven-javadoc-plugin and maven-source-plugin to storage-targets/cds-feature-attachments-oss
Try to fix the failing maven deployment https://github.com/cap-java/cds-feature-attachments/actions/runs/17241063009/job/48918884538 with this, because the error is: Deployment failed pkg:maven/com.sap.cds/[email protected]: - Sources must be provided but not found in entries - Javadocs must be provided but not found in entries
1 parent 9a2fe17 commit 4595a01

File tree

1 file changed

+26
-0
lines changed
  • storage-targets/cds-feature-attachments-oss

1 file changed

+26
-0
lines changed

storage-targets/cds-feature-attachments-oss/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,32 @@
169169
</configuration>
170170
</plugin>
171171

172+
<plugin>
173+
<artifactId>maven-javadoc-plugin</artifactId>
174+
<configuration>
175+
<failOnError>true</failOnError>
176+
<doclint>all,-missing</doclint>
177+
</configuration>
178+
<executions>
179+
<execution>
180+
<goals>
181+
<goal>jar</goal>
182+
</goals>
183+
</execution>
184+
</executions>
185+
</plugin>
186+
187+
<plugin>
188+
<artifactId>maven-source-plugin</artifactId>
189+
<executions>
190+
<execution>
191+
<goals>
192+
<goal>jar</goal>
193+
</goals>
194+
</execution>
195+
</executions>
196+
</plugin>
197+
172198
</plugins>
173199
</build>
174200
<profiles>

0 commit comments

Comments
 (0)