This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch kylin5 in repository https://gitbox.apache.org/repos/asf/kylin.git
commit a3a709853c2260ba4a8f113604f3b89bfc52a560 Author: Lex Meng <9191288+lexm...@users.noreply.github.com> AuthorDate: Wed Nov 2 14:37:33 2022 +0800 KYLIN-5396 fix the version of pom in Kylin-it * fix the version of pom in Kap-it/Kylin-it * fix commons-beanutils version --- pom.xml | 19 ++++++++++++------- src/common-service/pom.xml | 1 - src/kylin-it/pom.xml | 7 ------- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/pom.xml b/pom.xml index 6ad384d72d..80e6a6ed9c 100644 --- a/pom.xml +++ b/pom.xml @@ -758,6 +758,13 @@ <version>${project.version}</version> <type>test-jar</type> </dependency> + <dependency> + <groupId>org.apache.kylin</groupId> + <artifactId>kylin-streaming</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.kylin</groupId> <artifactId>kylin-common-service</artifactId> @@ -1083,6 +1090,11 @@ <version>${guava.version}</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>${beanutils.version}</version> + </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>listenablefuture</artifactId> @@ -2191,13 +2203,6 @@ <version>${servo-core.version}</version> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-dependencies</artifactId> - <version>${spring.boot.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> diff --git a/src/common-service/pom.xml b/src/common-service/pom.xml index 40c94752dc..6226d6ea78 100644 --- a/src/common-service/pom.xml +++ b/src/common-service/pom.xml @@ -166,7 +166,6 @@ <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> - <version>${beanutils.version}</version> </dependency> <dependency> diff --git a/src/kylin-it/pom.xml b/src/kylin-it/pom.xml index 322af3ea24..19a5def3a6 100644 --- a/src/kylin-it/pom.xml +++ b/src/kylin-it/pom.xml @@ -12,11 +12,6 @@ <artifactId>kylin-it</artifactId> - <properties> - <beanutils.version>1.9.4</beanutils.version> - <kylin.module.version>5.0.0-SNAPSHOT</kylin.module.version> - </properties> - <dependencies> <!--Springfox Swagger2 v2.9.2, swagger2markup v1.3.3. has specific requirement on guava and commons-beanutils --> <dependency> @@ -27,7 +22,6 @@ <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> - <version>${beanutils.version}</version> </dependency> <dependency> @@ -231,7 +225,6 @@ <dependency> <groupId>org.apache.kylin</groupId> <artifactId>kylin-streaming</artifactId> - <version>${kylin.module.version}</version> <type>test-jar</type> <scope>test</scope> </dependency>