-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle.kts
57 lines (47 loc) · 1.58 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.3.50"
}
group = "dev.mahabal.runetech"
version = "2.0"
repositories {
mavenCentral()
}
tasks.test {
useJUnitPlatform()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
// ASM is used to perform the bytecode analysis on the gamepack to determine revision
// https://mvnrepository.com/artifact/org.ow2.asm/asm
implementation("org.ow2.asm:asm-tree:7.2")
// JSoup is used to easily connect and download web content
// https://mvnrepository.com/artifact/org.jsoup/jsoup
implementation("org.jsoup:jsoup:1.12.1")
// Clikt is used out of laziness to provide simple and easy to configure CLI argument parsing
// https://mvnrepository.com/artifact/com.github.ajalt/clikt
implementation("com.github.ajalt:clikt:2.2.0")
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine
testCompile("org.junit.jupiter:junit-jupiter-api:5.5.2")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.5.2")
}
tasks.jar {
enabled = false
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
val fatJar = task("fatJar", type = Jar::class) {
archiveName = "${project.name}.jar"
manifest {
attributes["Implementation-Version"] = version
attributes["Main-Class"] = "dev.mahabal.runetech.GamepackDownloaderKt"
}
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
with(tasks.jar.get() as CopySpec)
}
tasks {
"build" {
dependsOn(fatJar)
}
}