-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (40 loc) · 835 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
plugins {
id 'java'
id 'distribution'
}
group 'org.example'
version '1.0'
compileJava {
sourceCompatibility = 8
targetCompatibility = 8
}
jar {
archivesBaseName="BenchmarkExecutor"
project.version=""
}
distributions {
main {
contents{
into('config') {
from 'config'
}
into('lib') {
from jar
from(configurations.runtimeClasspath)
}
from 'runscripts/run.cmd'
from 'runscripts/run.sh'
}
}
}
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/ch.qos.logback/logback-core
implementation 'ch.qos.logback:logback-core:1.2.5'
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
implementation 'ch.qos.logback:logback-classic:1.2.5'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
implementation 'org.slf4j:slf4j-api:1.7.32'
}