This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
commit 1f9a5e8c42fc313ba64b88850b8b8c226594beca Author: Mingyu Chen <morning...@163.com> AuthorDate: Wed Jan 11 08:46:48 2023 +0800 [chore](fe) update fe snapshot to 1.2 and fix auditloader compile error (#15787) This PR #14925 change some field of AuditEvent, so we need to upgrade the fe-core's SNAPSHOT to 1.2 because auditloader depends on fe-core Already push the 1.2-SNAPSHOT to https://repository.apache.org/content/repositories/snapshots/org/apache/doris/fe-core/1.2-SNAPSHOT/ --- build.sh | 4 +++- fe/pom.xml | 2 +- fe_plugins/pom.xml | 8 ++++++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 130018a18b..e4aea2a657 100755 --- a/build.sh +++ b/build.sh @@ -130,7 +130,7 @@ BUILD_BROKER=0 BUILD_AUDIT=0 BUILD_META_TOOL='OFF' BUILD_SPARK_DPP=0 -BUILD_JAVA_UDF=1 +BUILD_JAVA_UDF=0 BUILD_HIVE_UDF=0 CLEAN=0 HELP=0 @@ -154,10 +154,12 @@ else BUILD_FE=1 BUILD_SPARK_DPP=1 BUILD_HIVE_UDF=1 + BUILD_JAVA_UDF=1 shift ;; --be) BUILD_BE=1 + BUILD_JAVA_UDF=1 shift ;; --broker) diff --git a/fe/pom.xml b/fe/pom.xml index 19c71ffdfd..993d0d3a07 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -243,7 +243,7 @@ under the License. <mariadb-java-client.version>3.0.4</mariadb-java-client.version> <dlf-metastore-client-hive2.version>0.2.14</dlf-metastore-client-hive2.version> <hadoop.version>2.10.2</hadoop.version> - <revision>1.0-SNAPSHOT</revision> + <revision>1.2-SNAPSHOT</revision> <project.scm.id>github</project.scm.id> </properties> <profiles> diff --git a/fe_plugins/pom.xml b/fe_plugins/pom.xml index 38ed89eaee..bdb90d3f66 100644 --- a/fe_plugins/pom.xml +++ b/fe_plugins/pom.xml @@ -68,7 +68,7 @@ under the License. </modules> <properties> <log4j2.version>2.18.0</log4j2.version> - <doris.version>1.0-SNAPSHOT</doris.version> + <doris.version>1.2-SNAPSHOT</doris.version> <project.scm.id>github</project.scm.id> </properties> <profiles> @@ -101,7 +101,11 @@ under the License. </property> </activation> <repositories> - <!-- for java-cup --> + <repository> + <id>snapshots</id> + <name>apache snapshots maven repo https</name> + <url>https://repository.apache.org/content/repositories/snapshots/</url> + </repository> <repository> <id>cloudera-public</id> <url>https://repository.cloudera.com/artifactory/public/</url> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org