mirror of
https://gitlab.com/2009scape/09launcher.git
synced 2025-12-09 16:45:54 -07:00
22 lines
No EOL
418 B
Groovy
22 lines
No EOL
418 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.4.32'
|
|
}
|
|
|
|
group 'org.rs09'
|
|
version '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib"
|
|
implementation 'org.jsoup:jsoup:1.14.1'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'MainWindow'
|
|
}
|
|
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
} |