Skip to content

Commit

Permalink
add start-store.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Pengzna committed Jun 29, 2024
1 parent 5774679 commit 84fc90e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
26 changes: 26 additions & 0 deletions hugegraph-server/hugegraph-dist/src/assembly/travis/start-store.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with this
# work for additional information regarding copyright ownership. The ASF
# licenses this file to You under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
set -ev

HOME_DIR=$(pwd)
STORE_DIR=$HOME_DIR/hugegraph-store/apache-hugegraph-incubating-store-1.3.0

pushd $STORE_DIR
. bin/start-hugegraph-store.sh
sleep 10
popd
13 changes: 5 additions & 8 deletions hugegraph-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<artifactId>hugegraph-store</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
Expand Down Expand Up @@ -80,12 +78,11 @@
<artifactId>hg-store-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- TODO: uncomment later-->
<!-- <dependency>-->
<!-- <groupId>org.apache.hugegraph</groupId>-->
<!-- <artifactId>hg-store-transfer</artifactId>-->
<!-- <version>${project.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>org.apache.hugegraph</groupId>
<artifactId>hg-store-transfer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
Expand Down

0 comments on commit 84fc90e

Please sign in to comment.