Skip to content

Commit

Permalink
chore: update server
Browse files Browse the repository at this point in the history
  • Loading branch information
imbajin committed Nov 6, 2024
1 parent e77658c commit 454373d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
KUBERNETES_VERSION: 1.20.1
BSP_ETCD_URL: http://localhost:2579
# TODO: delete this env in the future (replaced by docker way now)
HUGEGRAPH_SERVER_COMMIT_ID: d01c8737d7d5909119671953521f1401dcd1a188
HUGEGRAPH_SERVER_COMMIT_ID: 2294d2abc2ef65e5b395cd8ab25bc6a12e38d4ae

steps:
- name: Checkout
Expand Down
16 changes: 8 additions & 8 deletions computer/computer-dist/scripts/dependency/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ commons-logging-1.1.3.jar
commons-math3-3.1.1.jar
commons-net-3.6.jar
commons-text-1.9.jar
computer-algorithm-1.3.0.jar
computer-api-1.3.0.jar
computer-core-1.3.0.jar
computer-dist-1.3.0.jar
computer-driver-1.3.0.jar
computer-k8s-1.3.0.jar
computer-k8s-operator-1.3.0.jar
computer-yarn-1.3.0.jar
computer-algorithm-1.5.0.jar
computer-api-1.5.0.jar
computer-core-1.5.0.jar
computer-dist-1.5.0.jar
computer-driver-1.5.0.jar
computer-k8s-1.5.0.jar
computer-k8s-operator-1.5.0.jar
computer-yarn-1.5.0.jar
curator-client-2.13.0.jar
curator-framework-2.13.0.jar
curator-recipes-2.13.0.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.
#

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

Expand All @@ -25,9 +25,9 @@ if [[ -d $DEP_PATH ]];then
rm -r -f $DEP_PATH
fi

cd $BASE_PATH/../../../
cd $BASE_PATH/../../../ || exit

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

ls $DEP_PATH | egrep -v "^hugegraph" | sort -n > $BASE_PATH/$FILE_NAME
rm -r -f $DEP_PATH
3 changes: 2 additions & 1 deletion computer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@

<properties>
<revision>1.5.0</revision>
<hugegraph-commons-version>${revision}</hugegraph-commons-version>
<!-- TODO: fix deps conflicts & update to 1.5.0 -->
<hugegraph-commons-version>1.3.0</hugegraph-commons-version>
<hugegraph-toolchain-version>${revision}</hugegraph-toolchain-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<top.level.dir>${project.basedir}/..</top.level.dir>
Expand Down

0 comments on commit 454373d

Please sign in to comment.