Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade revision to 1.5.0 #2585

Merged
merged 2 commits into from
Jul 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions hugegraph-pd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,6 @@
<goal>clean</goal>
</goals>
</execution>
<!-- auto delete .flattened-pom.xml after "install" step -->
<execution>
<id>remove-flattened-pom</id>
<phase>install</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
Comment on lines -122 to -129
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enhance later: could add an activation (then enable it when not deploying, but only effective during installation).

</executions>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class CoreVersion {

public static final String NAME = "hugegraph-core";
public static final String DEFAULT_VERSION = "1.3.0";
public static final String DEFAULT_VERSION = "1.5.0";
/**
* The second parameter of Version.of() is for IDE running without JAR
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
set -ev

HOME_DIR=$(pwd)
PD_DIR=$HOME_DIR/hugegraph-pd/apache-hugegraph-incubating-pd-1.3.0
PD_DIR=$HOME_DIR/hugegraph-pd/apache-hugegraph-incubating-pd-1.5.0

pushd $PD_DIR
. bin/start-hugegraph-pd.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
set -ev

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

pushd $STORE_DIR
. bin/start-hugegraph-store.sh
Expand Down
24 changes: 12 additions & 12 deletions install-dist/scripts/dependency/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,18 @@ hbase-shaded-endpoint-2.0.6.jar
HdrHistogram-2.1.12.jar
HdrHistogram-2.1.9.jar
hessian-3.3.6.jar
hg-pd-client-1.3.0.jar
hg-pd-common-1.3.0.jar
hg-pd-core-1.3.0.jar
hg-pd-dist-1.3.0.jar
hg-pd-grpc-1.3.0.jar
hg-pd-service-1.3.0.jar
hg-store-client-1.3.0.jar
hg-store-common-1.3.0.jar
hg-store-core-1.3.0.jar
hg-store-grpc-1.3.0.jar
hg-store-rocksdb-1.3.0.jar
hg-store-node-1.3.0.jar
hg-pd-client-1.5.0.jar
hg-pd-common-1.5.0.jar
hg-pd-core-1.5.0.jar
hg-pd-dist-1.5.0.jar
hg-pd-grpc-1.5.0.jar
hg-pd-service-1.5.0.jar
hg-store-client-1.5.0.jar
hg-store-common-1.5.0.jar
hg-store-core-1.5.0.jar
hg-store-grpc-1.5.0.jar
hg-store-node-1.5.0.jar
hg-store-rocksdb-1.5.0.jar
high-scale-lib-1.0.6.jar
hk2-api-3.0.1.jar
hk2-locator-3.0.1.jar
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
</scm>

<properties>
<revision>1.3.0</revision>
<revision>1.5.0</revision>
</properties>

<modules>
Expand Down
Loading