finding the required libraries when loading the plugin with gradle

Discussion in 'Plugin Development' started by fireboyev, Feb 15, 2017.

Thread Status:
Not open for further replies.
  1. Offline

    fireboyev

    Hey all, I have a plugin that is using gradle to get the required libraries but for some reason it still isn't finding them when loading on the server. Could anyone help?
    build.gradle:
    Code:
    plugins {
        id'java'
        id'application'
        id'com.github.johnrengelman.shadow' version '1.2.4'
    }
    
    mainClassName = 'com.example.jda.Bot'
    
    version '1.0'
    
    sourceCompatibility = 1.8
    
    repositories {
        jcenter()
    }
    
    dependencies {
        compile 'net.dv8tion:JDA:3.0.BETA2_128'
    }
    
    compileJava.options.encoding = 'UTF-8'
    not even 100% sure if what I am doing is correct.
     
  2. Offline

    fireboyev

Thread Status:
Not open for further replies.

Share This Page