Matt afcd8e0dbf
Update SlimJar + Nashorn for Java 17 (#51)
* Updated SlimJar

* Updated Nashorn to work on Java 17
2021-10-18 12:57:00 -05:00

25 lines
516 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'com.extendedclip.papi.expansion.javascript'
version '2.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url = "https://repo.vshnv.tech/"
}
}
dependencies {
compileOnly project(':evaluator-api')
compileOnly fileTree("libs")
implementation 'io.github.slimjar:slimjar:1.2.6'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}