Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit c0d4355

Browse files
committed
added java doc plugin
1 parent e31f787 commit c0d4355

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>jar</packaging>
1010

1111
<name>SqlEngine Database Adapter MySQL 5</name>
12-
12+
1313

1414
<licenses>
1515
<license>
@@ -169,6 +169,25 @@
169169
</executions>
170170
</plugin>
171171

172+
<plugin>
173+
<groupId>org.apache.maven.plugins</groupId>
174+
<artifactId>maven-javadoc-plugin</artifactId>
175+
<version>3.3.0</version>
176+
<executions>
177+
<execution>
178+
<id>attach-javadocs</id>
179+
<phase>package</phase>
180+
<goals>
181+
<goal>jar</goal>
182+
</goals>
183+
</execution>
184+
</executions>
185+
<configuration>
186+
<quiet>true</quiet>
187+
<doclint>none</doclint>
188+
</configuration>
189+
</plugin>
190+
172191
</plugins>
173192
</build>
174193

0 commit comments

Comments
 (0)