Skip to content

Commit 454373d

Browse files
committed
chore: update server
1 parent e77658c commit 454373d

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
KUBERNETES_VERSION: 1.20.1
2020
BSP_ETCD_URL: http://localhost:2579
2121
# TODO: delete this env in the future (replaced by docker way now)
22-
HUGEGRAPH_SERVER_COMMIT_ID: d01c8737d7d5909119671953521f1401dcd1a188
22+
HUGEGRAPH_SERVER_COMMIT_ID: 2294d2abc2ef65e5b395cd8ab25bc6a12e38d4ae
2323

2424
steps:
2525
- name: Checkout

computer/computer-dist/scripts/dependency/known-dependencies.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ commons-logging-1.1.3.jar
3636
commons-math3-3.1.1.jar
3737
commons-net-3.6.jar
3838
commons-text-1.9.jar
39-
computer-algorithm-1.3.0.jar
40-
computer-api-1.3.0.jar
41-
computer-core-1.3.0.jar
42-
computer-dist-1.3.0.jar
43-
computer-driver-1.3.0.jar
44-
computer-k8s-1.3.0.jar
45-
computer-k8s-operator-1.3.0.jar
46-
computer-yarn-1.3.0.jar
39+
computer-algorithm-1.5.0.jar
40+
computer-api-1.5.0.jar
41+
computer-core-1.5.0.jar
42+
computer-dist-1.5.0.jar
43+
computer-driver-1.5.0.jar
44+
computer-k8s-1.5.0.jar
45+
computer-k8s-operator-1.5.0.jar
46+
computer-yarn-1.5.0.jar
4747
curator-client-2.13.0.jar
4848
curator-framework-2.13.0.jar
4949
curator-recipes-2.13.0.jar

computer/computer-dist/scripts/dependency/regenerate_known_dependencies.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717
#
1818

19-
BASE_PATH=$(cd $(dirname $0); pwd)
19+
BASE_PATH=$(cd $(dirname $0) || exit; pwd)
2020
DEP_PATH=$BASE_PATH/all_dependencies
2121
FILE_NAME=${1:-known-dependencies.txt}
2222

@@ -25,9 +25,9 @@ if [[ -d $DEP_PATH ]];then
2525
rm -r -f $DEP_PATH
2626
fi
2727

28-
cd $BASE_PATH/../../../
28+
cd $BASE_PATH/../../../ || exit
2929

30-
mvn dependency:copy-dependencies -DincludeScope=runtime -DoutputDirectory=$DEP_PATH
30+
mvn dependency:copy-dependencies -DincludeScope=runtime -DoutputDirectory=$DEP_PATH -P stage
3131

3232
ls $DEP_PATH | egrep -v "^hugegraph" | sort -n > $BASE_PATH/$FILE_NAME
3333
rm -r -f $DEP_PATH

computer/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@
9292

9393
<properties>
9494
<revision>1.5.0</revision>
95-
<hugegraph-commons-version>${revision}</hugegraph-commons-version>
95+
<!-- TODO: fix deps conflicts & update to 1.5.0 -->
96+
<hugegraph-commons-version>1.3.0</hugegraph-commons-version>
9697
<hugegraph-toolchain-version>${revision}</hugegraph-toolchain-version>
9798
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9899
<top.level.dir>${project.basedir}/..</top.level.dir>

0 commit comments

Comments
 (0)