The Well
The Well

Reputation: 884

How to add dependency in Gluon Project

I have my custom jar file suppose to be added in the classpath of my Gluon project, but I couldn't find any facility in Netbeans that allows you to add your custom jars. Can someone guide me on how to do it?

enter image description here

build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b9'
    }
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
}

mainClassName = 'com.rameses.Main'

jfxmobile {
    android {
        manifest = 'src/android/AndroidManifest.xml'
    }
    ios {
        infoPList = file('src/ios/Default-Info.plist')
    }
}

Upvotes: 0

Views: 1634

Answers (1)

ItachiUchiha
ItachiUchiha

Reputation: 36742

Though I do not use Netbeans or the plugin you have mentioned, but since it is a gradle project, you can add the custom jars to your classpath by adding the following code in your build.gradle file.

dependencies {
    compile files('libs/custom.jar')
}

where,

libs/custom.jar is the relative path of the jar w.r.t to the gradle file.

Upvotes: 3

Related Questions