-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
50 lines (42 loc) · 916 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
50 lines (42 loc) · 916 Bytes
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
plugins {
id("java")
id("com.gradleup.shadow") version "9.0.0"
}
group = "com.reflective"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
implementation("com.google.code.gson:gson:2.10.1")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
// Keep using flat src/ layout from the original project
sourceSets {
main {
java {
srcDirs("src")
}
}
test {
java {
srcDirs("test")
}
}
}
tasks.test {
useJUnitPlatform()
}
tasks.shadowJar {
manifest {
attributes["Main-Class"] = "com.reflective.Main"
}
archiveBaseName.set("reflective-agent")
archiveClassifier.set("")
archiveVersion.set("")
}