iLexiconn / LLibrary

The lightweight Minecraft modding library.
https://github.com/iLexiconn/LLibrary/wiki
GNU Lesser General Public License v2.1
52 stars 31 forks source link

I can't build my project #85

Closed kave777 closed 6 years ago

kave777 commented 6 years ago

I can't build my project . 34 here is my build script :

buildscript { repositories { maven { url = "http://maven.bluexin.be/repository/snapshots/" } maven { name = "ilexiconn" url = "https://maven.mcmoddev.com" } jcenter() maven { url = "http://files.minecraftforge.net/maven" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' compile "net.ilexiconn:llibrary:1.7.14-1.12.2" } }

Gegy commented 6 years ago

You've put the LLibrary maven and dependency in your buildscript block, they need to go outside of that on their own like:

buildscript {
    repositories {
        jcenter()
        maven { url = "http://files.minecraftforge.net/maven" }
    }
    dependencies {
        classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
    }
}

repositories {
    maven { url = "https://maven.mcmoddev.com" }
}

dependencies {
    compile "net.ilexiconn:llibrary:1.7.14-1.12.2"
}