@@ -72,12 +72,11 @@ minecraft {
7272repositories {
7373 jcenter()
7474 mavenCentral()
75- maven { url(" https://minecraft.curseforge.com/api/maven/" ) }
7675 maven { url(" https://libraries.minecraft.net" ) }
77- maven { url(" https://jitpack.io" ) }
7876}
7977
8078dependencies {
79+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
8180 minecraft(group : " net.minecraftforge" , name : " forge" , version : forge_version)
8281 compile(group : " com.mojang" , name : " brigadier" , version : brigadier_version)
8382 compile(
@@ -90,16 +89,6 @@ dependencies {
9089 name : " kotlin-stdlib-$kotlin_jdk_version_target " ,
9190 version : kotlin_version
9291 )
93- compile(
94- group : " com.github.projectessentials" ,
95- name : " ProjectEssentials-Core" ,
96- version : ess_core_version
97- )
98- compile(
99- group : " com.github.projectessentials" ,
100- name : " ProjectEssentials-Permissions" ,
101- version : ess_permissions_version
102- )
10392}
10493
10594dokka {
@@ -130,9 +119,3 @@ sourceCompatibility = targetCompatibility =
130119compileKotlin. kotlinOptions. jvmTarget =
131120 compileTestKotlin. kotlinOptions. jvmTarget = project_jvm_version_target
132121
133- // noinspection GroovyAssignabilityCheck
134- tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). all {
135- kotlinOptions {
136- freeCompilerArgs + = " -Xuse-experimental=kotlin.Experimental"
137- }
138- }
0 commit comments