-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
42 lines (34 loc) · 1.04 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-library"
}
group = 'com.zebrunner'
version = "${version != 'unspecified' ? version : '1.0-SNAPSHOT'}"
ext.coreVersion = project.properties['core.version'] ?: '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url "https://nexus.zebrunner.dev/repository/ce-snapshots/"
}
}
dependencies {
implementation("com.google.code.gson:gson:2.10.1")
api("com.zebrunner:agent-core:${coreVersion}")
implementation("com.nordstrom.tools:junit-foundation:17.0.3")
implementation("junit:junit:4.13.2")
annotationProcessor("org.projectlombok:lombok:1.18.26")
compileOnly("org.projectlombok:lombok:1.18.26")
}
jar {
manifest {
attributes(
"Premain-Class": "com.zebrunner.agent.junit.JUnitAgent",
"Can-Redefine-Classes": false,
"Can-Retransform-Classes": true,
"Build-Jdk": "1.8.0_152"
)
}
}
apply from: 'publish-maven.gradle'