This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-fury.git
The following commit(s) were added to refs/heads/main by this push:
new 3ca0c810 update fury java install (#1268)
3ca0c810 is described below
commit 3ca0c810b6598705ea43f108989a606a71ac0696
Author: Shawn Yang <[email protected]>
AuthorDate: Thu Dec 28 00:53:48 2023 +0800
update fury java install (#1268)
- use apache group id for snapshot version
- use furyio group id for release version until released first version
under apache
---
README.md | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 7e2332de..32c07c8d 100644
--- a/README.md
+++ b/README.md
@@ -83,11 +83,12 @@ See
[benchmarks](https://github.com/apache/incubator-fury/tree/main/docs/benchma
## Installation
### Java
Nightly snapshot:
+
```xml
<repositories>
<repository>
- <id>sonatype</id>
- <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
+ <id>apache</id>
+ <url>https://repository.apache.org/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
@@ -108,24 +109,27 @@ Nightly snapshot:
<version>0.5.0-SNAPSHOT</version>
</dependency> -->
```
+
Release version:
```xml
<dependency>
- <groupId>org.apache.fury</groupId>
+ <groupId>org.furyio</groupId>
<artifactId>fury-core</artifactId>
<version>0.4.1</version>
</dependency>
<!-- row/arrow format support -->
<!-- <dependency>
- <groupId>org.apache.fury</groupId>
+ <groupId>org.furyio</groupId>
<artifactId>fury-format</artifactId>
<version>0.4.1</version>
</dependency> -->
```
+Maven groupId will be changed to `org.apache.fury` when next version is
released.
+
### Scala
```sbt
-libraryDependencies += "org.apache.fury" % "fury-core" % "0.4.1"
+libraryDependencies += "org.furyio" % "fury-core" % "0.4.1"
```
### Python
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]