JAML/build.gradle
2022-03-06 22:51:28 -05:00

38 lines
756 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'tech.nevets.jaml'
version '0.4.1'
repositories {
mavenCentral()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://repo.nevets.tech/repository/maven-public'
}
}
sourceCompatibility = targetCompatibility = '17'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
implementation 'me.carleslc.Simple-YAML:Simple-Yaml:1.7.3'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'net.arikia.dev:drpc:1.0'
implementation 'commons-io:commons-io:2.11.0'
}
shadowJar {
manifest {
attributes(
'Main-Class': 'tech.nevets.jaml.JAML'
)
}
}