Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 896 Bytes

File metadata and controls

62 lines (45 loc) · 896 Bytes

Building from Source

Prerequisites

  • JDK 17+
  • Maven 3.9+

Build

mvn clean package

Run Examples

cd examples/00-basic-usage
mvn compile exec:java

Run Benchmarks

mvn test -Dtest=Benchmark

Installation

JitPack (Recommended)

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.andrestubbe</groupId>
        <artifactId>fasttween</artifactId>
        <version>v1.1.0</version>
    </dependency>
</dependencies>

Gradle (JitPack)

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.andrestubbe:fasttween:v1.1.0'
}

Download Pre-built JAR

See Releases Page