Skip to content

Commit 40a3448

Browse files
authored
Merge pull request #796 from FgForrest/dev
doc: including JavaDoc sources in client_all_in_one artifact
2 parents bccf26e + 7840498 commit 40a3448

File tree

1 file changed

+19
-1
lines changed
  • evita_external_api/evita_external_api_grpc/client_all_in_one

1 file changed

+19
-1
lines changed

evita_external_api/evita_external_api_grpc/client_all_in_one/pom.xml

+19-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
~ | __/\ V /| | || (_| | |_| | |_) |
88
~ \___| \_/ |_|\__\__,_|____/|____/
99
~
10-
~ Copyright (c) 2023-2024
10+
~ Copyright (c) 2023-2025
1111
~
1212
~ Licensed under the Business Source License, Version 1.1 (the "License");
1313
~ you may not use this file except in compliance with the License.
@@ -55,6 +55,24 @@
5555
</archive>
5656
</configuration>
5757
</plugin>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-javadoc-plugin</artifactId>
61+
<version>3.5.0</version>
62+
<executions>
63+
<execution>
64+
<id>attach-javadoc</id>
65+
<goals>
66+
<goal>jar</goal>
67+
</goals>
68+
<configuration>
69+
<includeDependencySources>true</includeDependencySources>
70+
<dependencySourceExcludes>org.projectlombok:*,com.google.code.findbugs:*</dependencySourceExcludes>
71+
<additionalJOption>-quiet</additionalJOption>
72+
</configuration>
73+
</execution>
74+
</executions>
75+
</plugin>
5876
<plugin>
5977
<groupId>org.apache.maven.plugins</groupId>
6078
<artifactId>maven-shade-plugin</artifactId>

0 commit comments

Comments
 (0)