You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2023/01/11 00:46:54 UTC

[doris] branch master updated: [chore](fe) update fe snapshot to 1.2 and fix auditloader compile error (#15787)

This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 89c21af87d [chore](fe) update fe snapshot to 1.2 and fix auditloader compile error (#15787)
89c21af87d is described below

commit 89c21af87dfc1f9a863a2c521c6c6ab6a2e40e63
Author: Mingyu Chen <mo...@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 84f15f96f0..6360acb6fd 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
@@ -153,10 +153,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 6fed5b9fbc..081786ed34 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-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org