Skip to content

Commit

Permalink
[chore](fe) update fe snapshot to 1.2 and fix auditloader compile err…
Browse files Browse the repository at this point in the history
…or (apache#15787)

This PR apache#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/
  • Loading branch information
morningman authored Jan 11, 2023
1 parent 8f31a36 commit 89c21af
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion fe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
8 changes: 6 additions & 2 deletions fe_plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 89c21af

Please sign in to comment.