JAML-Installer/build.gradle

23 lines
408 B
Groovy

plugins {
id 'java'
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'
}
}