This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/main by this push: new 15b52c7c84 KYLIN-5251 fix kylin run on hadoop3 15b52c7c84 is described below commit 15b52c7c84f74f7dca0335c21f12175f60e6d97b Author: Mukvin <boyboys...@163.com> AuthorDate: Fri Sep 2 16:39:40 2022 +0800 KYLIN-5251 fix kylin run on hadoop3 --- pom.xml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05f60d1c8c..a7be37a0f7 100644 --- a/pom.xml +++ b/pom.xml @@ -1837,7 +1837,6 @@ </plugins> </build> </profile> - <profile> <id>m2e-only</id> <activation> @@ -1889,5 +1888,18 @@ </pluginManagement> </build> </profile> + <profile> + <id>hadoop3</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <dependencies> + <dependency> + <groupId>commons-configuration</groupId> + <artifactId>commons-configuration</artifactId> + <version>1.6</version> + </dependency> + </dependencies> + </profile> </profiles> </project>