37 lines
792 B
Diff
37 lines
792 B
Diff
From 9d40cc895709fe3b178e587b946d47249aac2b5f Mon Sep 17 00:00:00 2001
|
|
From: wang--ge <wang__ge@126.com>
|
|
Date: Thu, 27 Jan 2022 11:19:48 +0800
|
|
Subject: [PATCH] add javadoc plugin
|
|
|
|
---
|
|
pom.xml | 13 +++++++++++++
|
|
1 file changed, 13 insertions(+)
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index 9ea840a..8003d25 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -360,6 +360,19 @@
|
|
<effort>Default</effort>
|
|
</configuration>
|
|
</plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
+ <version>3.0.0-M1</version>
|
|
+ <executions>
|
|
+ <execution>
|
|
+ <id>attach-javadoc</id>
|
|
+ <goals>
|
|
+ <goal>jar</goal>
|
|
+ </goals>
|
|
+ </execution>
|
|
+ </executions>
|
|
+ </plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
--
|
|
2.27.0
|
|
|