packwiz-installer/build.gradle

18 lines
411 B
Groovy

plugins {
id 'java'
id 'application'
}
dependencies {
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
mainClassName = 'link.infra.packwiz.launcher.Main'