mirror of
https://github.com/packwiz/packwiz-installer.git
synced 2025-04-19 21:16:30 +02:00
18 lines
411 B
Groovy
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' |