Skip to content

Commit

Permalink
update fury java install (#1268)
Browse files Browse the repository at this point in the history
- use apache group id for snapshot version
- use furyio group id for release version until released first version
under apache
  • Loading branch information
chaokunyang authored Dec 27, 2023
1 parent dd2f24a commit 3ca0c81
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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
Expand Down

0 comments on commit 3ca0c81

Please sign in to comment.