Skip to content

Commit bcd44f3

Browse files
authored
Merge pull request #8 from liubao68/work
add javadoc and sources
2 parents 7e56f93 + f2f7b01 commit bcd44f3

File tree

1 file changed

+34
-35
lines changed

1 file changed

+34
-35
lines changed

pom.xml

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -558,41 +558,6 @@ under the License.
558558
<keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure>
559559
</configuration>
560560
</plugin>
561-
562-
<plugin>
563-
<groupId>org.apache.maven.plugins</groupId>
564-
<artifactId>maven-javadoc-plugin</artifactId>
565-
<version>3.6.3</version>
566-
<configuration>
567-
<failOnError>false</failOnError>
568-
<sourceFileIncludes>
569-
<fileInclude>**/*GaussDB*</fileInclude>
570-
</sourceFileIncludes>
571-
<overview>${basedir}/nonexistent-overview.html</overview>
572-
</configuration>
573-
<executions>
574-
<execution>
575-
<id>attach-javadocs</id>
576-
<goals>
577-
<goal>jar</goal>
578-
</goals>
579-
</execution>
580-
</executions>
581-
</plugin>
582-
583-
<plugin>
584-
<groupId>org.apache.maven.plugins</groupId>
585-
<artifactId>maven-source-plugin</artifactId>
586-
<version>3.3.0</version>
587-
<executions>
588-
<execution>
589-
<id>attach-javadocs</id>
590-
<goals>
591-
<goal>jar</goal>
592-
</goals>
593-
</execution>
594-
</executions>
595-
</plugin>
596561
</plugins>
597562

598563
</pluginManagement>
@@ -609,6 +574,40 @@ under the License.
609574
<artifactId>nexus-staging-maven-plugin</artifactId>
610575
</plugin>
611576

577+
<plugin>
578+
<groupId>org.apache.maven.plugins</groupId>
579+
<artifactId>maven-javadoc-plugin</artifactId>
580+
<version>3.6.3</version>
581+
<configuration>
582+
<failOnError>false</failOnError>
583+
<sourceFileIncludes>
584+
<fileInclude>**/*Gaussdb*</fileInclude>
585+
</sourceFileIncludes>
586+
<overview>${basedir}/nonexistent-overview.html</overview>
587+
</configuration>
588+
<executions>
589+
<execution>
590+
<id>attach-javadocs</id>
591+
<goals>
592+
<goal>jar</goal>
593+
</goals>
594+
</execution>
595+
</executions>
596+
</plugin>
597+
598+
<plugin>
599+
<groupId>org.apache.maven.plugins</groupId>
600+
<artifactId>maven-source-plugin</artifactId>
601+
<version>3.3.0</version>
602+
<executions>
603+
<execution>
604+
<id>attach-sources</id>
605+
<goals>
606+
<goal>jar</goal>
607+
</goals>
608+
</execution>
609+
</executions>
610+
</plugin>
612611
</plugins>
613612

614613
</build>

0 commit comments

Comments
 (0)