38 lines
793 B
Diff
38 lines
793 B
Diff
From b848e43ee6ab4a609e886ed56c5400979cce43d2 Mon Sep 17 00:00:00 2001
|
|
From: wang--ge <wang__ge@126.com>
|
|
Date: Mon, 24 Jan 2022 17:12:06 +0800
|
|
Subject: [PATCH] add javadoc plugin
|
|
|
|
---
|
|
pom.xml | 15 +++++++++++++++
|
|
1 file changed, 15 insertions(+)
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index ebd8723..983c90d 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -95,5 +95,20 @@
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
+ <plugins>
|
|
+ <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>
|
|
</project>
|
|
--
|
|
2.30.0
|
|
|