Update build.gradle

This commit is contained in:
Steven Tracey 2022-02-16 14:26:28 -05:00
parent de13240f87
commit d6c379a9ef
2 changed files with 7 additions and 9 deletions

3
.gitignore vendored
View File

@ -140,3 +140,6 @@ fabric.properties
.idea/caches/build_file_checksums.ser
config.yml
### Rust ###
LauncherExe/target/

View File

@ -1,10 +1,10 @@
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'tech.nevets.jaml'
version '0.2.0'
version '0.3.0'
repositories {
mavenCentral()
@ -22,18 +22,13 @@ tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
application {
mainModule = 'tech.nevets.jaml'
mainClass = 'tech.nevets.jaml.JAML'
}
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'
}
jar {
shadowJar {
manifest {
attributes(
'Main-Class': 'tech.nevets.jaml.JAML'