-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
39 lines (31 loc) · 1018 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
plugins {
id "java-library"
}
group = 'com.zebrunner'
version = "${version != 'unspecified' ? version : '1.7.0'}"
repositories {
mavenCentral()
}
dependencies {
compileOnly('com.konghq:unirest-java:3.13.10')
implementation('org.yaml:snakeyaml:1.30')
implementation("net.bytebuddy:byte-buddy:1.12.18")
compileOnly('io.appium:java-client:8.3.0')
implementation('org.slf4j:slf4j-api:1.7.36')
compileOnly("log4j:log4j:1.2.17")
compileOnly('org.apache.logging.log4j:log4j-core:2.17.2')
compileOnly('ch.qos.logback:logback-classic:1.2.11')
annotationProcessor('org.projectlombok:lombok:1.18.24')
compileOnly("org.projectlombok:lombok:1.18.24")
}
jar {
manifest {
attributes(
"Premain-Class": "com.zebrunner.agent.core.webdriver.DriverSessionsAgent",
"Can-Redefine-Classes": false,
"Can-Retransform-Classes": true,
"Build-Jdk": "1.8.0_152"
)
}
}
apply from: 'publish-maven.gradle'