I was having a problem adding a local jar to a JavaFX application using netbeans. This is basically the issue and the resolutions.... How to use external Jars in javafxports-Application
What I'm not understanding is why the gradle build does Not fail if it can't find a local dependency. If will fail if it can't find one from a repository
Here's the top of my build.gradle file
repositories {
mavenCentral ()
}
apply plugin: 'java'
dependencies {
compile 'com.firebase:firebase-client-jvm:2.4.0'
//This Will fail
compile 'org.badlink:none:4.0.3.RELEASE'
//This will build fine
compile files('libs/**A file that does not exist**.jar')
}