Skip to content

Commit

Permalink
update version to 3.0.0 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 authored Feb 14, 2022
1 parent 8a3ca95 commit 0722723
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ nebula-algorithm 是一款基于 [GraphX](https://spark.apache.org/graphx/) 的
$ cd nebula-algorithm
$ mvn clean package -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.skip=true
```
编译完成后,在 `nebula-algorithm/target` 目录下会生成 `nebula-algorithm-3.0-SNAPSHOT.jar` 。
编译完成后,在 `nebula-algorithm/target` 目录下会生成 `nebula-algorithm-3.0.0.jar` 。
2. 在 Maven 远程仓库下载
https://repo1.maven.org/maven2/com/vesoft/nebula-algorithm/
Expand All @@ -48,7 +48,7 @@ nebula-algorithm 是一款基于 [GraphX](https://spark.apache.org/graphx/) 的
* 提交算法任务
```
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0-SNAPSHOT.jar -p application.conf
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0.0.jar -p application.conf
```
* 使用限制
Expand Down Expand Up @@ -112,6 +112,7 @@ nebula-algorithm 是一款基于 [GraphX](https://spark.apache.org/graphx/) 的
| 2.5.0 | 2.5.0, 2.5.1 |
| 2.6.0 | 2.6.0, 2.6.1 |
| 2.6.2 | 2.6.0, 2.6.1 |
| 3.0.0 | 3.0.0 |
| 3.0-SNAPSHOT | nightly |
## 贡献
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You could submit the entire spark application or invoke algorithms in `lib` libr
$ cd nebula-algorithm
$ mvn clean package -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.skip=true
```
After the above buiding process, the target file `nebula-algorithm-3.0-SNAPSHOT.jar` will be placed under `nebula-algorithm/target`.
After the above buiding process, the target file `nebula-algorithm-3.0.0.jar` will be placed under `nebula-algorithm/target`.
2. Download from Maven repo
Expand All @@ -56,7 +56,7 @@ You could submit the entire spark application or invoke algorithms in `lib` libr
* Submit Spark Application
```
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0—SNAPSHOT.jar -p application.conf
${SPARK_HOME}/bin/spark-submit --master <mode> --class com.vesoft.nebula.algorithm.Main nebula-algorithm-3.0.0.jar -p application.conf
```
* Limitation
Expand Down Expand Up @@ -121,6 +121,7 @@ You could submit the entire spark application or invoke algorithms in `lib` libr
| 2.5.0 | 2.5.0, 2.5.1 |
| 2.6.0 | 2.6.0, 2.6.1 |
| 2.6.1 | 2.6.0, 2.6.1 |
| 3.0.0 | 3.0.0 |
| 3.0-SNAPSHOT | nightly |
## Contribute
Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>algorithm</artifactId>
<groupId>com.vesoft</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions nebula-algorithm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>algorithm</artifactId>
<groupId>com.vesoft</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -15,7 +15,7 @@

<properties>
<spark.version>2.4.4</spark.version>
<nebula.version>3.0-SNAPSHOT</nebula.version>
<nebula.version>3.0.0</nebula.version>
<config.version>1.4.0</config.version>
<scopt.version>3.7.1</scopt.version>
<scalatest.version>3.2.0</scalatest.version>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.vesoft</groupId>
<artifactId>algorithm</artifactId>
<packaging>pom</packaging>
<version>3.0-SNAPSHOT</version>
<version>3.0.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 0722723

Please sign in to comment.