-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
34 lines (28 loc) · 844 Bytes
/
build.gradle
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
plugins {
id "com.github.johnrengelman.shadow" version "8.1.1"
id "java"
id "application"
}
mainClassName = "io.github.syst3ms.skriptparser.Parser"
sourceCompatibility = 1.17
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
implementation "org.jetbrains:annotations:15.0"
implementation group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.4.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.1"
testImplementation "junit:junit:4.12"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.1"
}
jar {
manifest {
attributes("Main-Class": mainClassName,
"Implementation-Title": "skript-parser",
"Implementation-Version": "alpha")
}
}