Skip to content
Anon10W1z edited this page Jan 28, 2019 · 2 revisions

Welcome to the warriorlib wiki!

To get warriorlib into your robot project, simply add/modify the following in your build.gradle:

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

dependencies {
    compile wpi.deps.wpilib()
    compile wpi.deps.vendor.java()
    nativeZip wpi.deps.vendor.jni(wpi.platforms.roborio)
    nativeDesktopZip wpi.deps.vendor.jni(wpi.platforms.desktop)
    compile 'com.github.Team3256:warriorlib:insert commit or release tag here'
}

And refresh the project.

Clone this wiki locally