-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (37 loc) · 1.23 KB
/
build.gradle
File metadata and controls
47 lines (37 loc) · 1.23 KB
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
plugins {
id("java")
id("application")
}
group = "com.reider745.innercoretoolchain"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation("com.google.code.gson:gson:2.13.1")
implementation 'org.fusesource.jansi:jansi:2.4.2'
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.0")
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.0'
// https://mvnrepository.com/artifact/org.projectlombok/lombok
compileOnly("org.projectlombok:lombok:1.18.38")
annotationProcessor("org.projectlombok:lombok:1.18.38")
implementation files("libs/r8.jar")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
application {
mainClass = "com.reider745.innercoretoolchain.Toolchain"
}
run {
workingDir 'target'
args("buildServer", "buildClient", "push")
standardInput System.in
}
jar {
duplicatesStrategy 'exclude'
manifest {
attributes 'Main-Class': application.mainClass
}
from configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}