JAML-Installer/build.gradle
2022-02-16 00:41:06 -05:00

24 lines
429 B
Groovy

plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'tech.nevets.jamlinstaller'
version '0.1.1'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
dependencies {
implementation 'commons-io:commons-io:2.11.0'
}
shadowJar {
manifest {
attributes 'Main-Class': 'tech.nevets.jamlinstaller.Main'
}
}