Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 1c52527

Browse files
committed
Remove error log message when generating javadoc for resource only jar
1 parent 5016928 commit 1c52527

File tree

1 file changed

+16
-0
lines changed
  • spring-cloud-starter-dataflow-server-local

1 file changed

+16
-0
lines changed

spring-cloud-starter-dataflow-server-local/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,22 @@
6161
</execution>
6262
</executions>
6363
</plugin>
64+
<plugin>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
<executions>
67+
<execution>
68+
<id>javadoc</id>
69+
<goals>
70+
<goal>jar</goal>
71+
</goals>
72+
<phase>package</phase>
73+
</execution>
74+
</executions>
75+
<configuration>
76+
<quiet>true</quiet>
77+
<sourcepath>${basedir}/src/test/java/org/springframework/cloud/dataflow/server/local/dataflowapp</sourcepath>
78+
</configuration>
79+
</plugin>
6480
</plugins>
6581
</build>
6682
</project>

0 commit comments

Comments
 (0)