beryx-gist / badass-runtime-example-javafx

A small JavaFX application that shows how to use the Badass Runtime Plugin
Apache License 2.0
26 stars 3 forks source link

When I add libs it comes an error. #14

Closed ghost closed 4 years ago

ghost commented 4 years ago

Adding libs.

siordache commented 4 years ago

You need to tell Gradle that your project depends on these libraries. Put this in your build.gradle:

repositories {
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    implementation name: 'bridj-0.6.3-20130316.190111-13'
    implementation name: 'slf4j-api-1.7.2'
    implementation name: 'webcam-capture-0.3.10-RC7'
}
ghost commented 4 years ago

@siordache Thank you!!!