This is an automated email from the ASF dual-hosted git repository. shaofengshi pushed a commit to branch 2.5.0-release in repository https://gitbox.apache.org/repos/asf/kylin.git
commit 07af02ff8037cececb8e188934d30530f4e4da90 Author: shaofengshi <shaofeng...@apache.org> AuthorDate: Wed Sep 12 18:06:51 2018 +0800 KYLIN-3513 disable javadoc check --- core-common/pom.xml | 29 ----------------------------- pom.xml | 7 +++++++ 2 files changed, 7 insertions(+), 29 deletions(-) diff --git a/core-common/pom.xml b/core-common/pom.xml index 2f1c8e2..94a3e76 100644 --- a/core-common/pom.xml +++ b/core-common/pom.xml @@ -102,33 +102,4 @@ <scope>provided</scope> </dependency> </dependencies> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>copy</id> - <phase>package</phase> - <goals> - <goal>copy</goal> - </goals> - <configuration> - <artifactItems> - <artifactItem> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - <overWrite>true</overWrite> - <outputDirectory>${project.basedir}/../../build/ext</outputDirectory> - </artifactItem> - </artifactItems> - <overWriteReleases>false</overWriteReleases> - <overWriteSnapshots>true</overWriteSnapshots> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> </project> diff --git a/pom.xml b/pom.xml index 3a2316c..ee6ec8c 100644 --- a/pom.xml +++ b/pom.xml @@ -1208,6 +1208,13 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <excludePackageNames>org.apache.kylin.*</excludePackageNames> + </configuration> + </plugin> </plugins> </build>