-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
42 lines (35 loc) · 1.01 KB
/
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
35
36
37
38
39
40
41
42
plugins {
id 'java'
id 'application'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'fr.atesab'
version '1.6.4'
repositories {
mavenCentral()
}
jar {
manifest {
attributes([
'Main-Class': application.mainClass,
"Specification-Title": "BOHashTool",
"Specification-Vendor": "ATE47",
"Specification-Version": "1", // We are version 1 of ourselves
"Implementation-Title": "BOHashTool",
"Implementation-Version": "${project.version}",
"Implementation-Vendor" :"ATE47",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
application {
mainClass = 'fr.atesab.bo4hash.Main'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'com.vladsch.flexmark:flexmark-all:0.64.0'
}
test {
useJUnitPlatform()
}