MVN

org.apache.fury : fury-core

Maven & Gradle

Apr 27, 2024

Apache Fury™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy. Apache Fury (incubating) is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

<dependency>
    <groupId>org.apache.fury</groupId>
    <artifactId>fury-core</artifactId>
    <version>0.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.fury : fury-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.0

All Versions

Choose a version of org.apache.fury : fury-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
fury-core-0.5.0

How to add a dependency to Maven

Add the following org.apache.fury : fury-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.fury</groupId>
    <artifactId>fury-core</artifactId>
    <version>0.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.fury : fury-core gradle dependency to your build.gradle file:

implementation 'org.apache.fury:fury-core:0.5.0'

Gradle Kotlin DSL: Add the following org.apache.fury : fury-core gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.fury:fury-core:0.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.fury : fury-core sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.fury" % "fury-core" % "0.5.0"