-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (26 loc) · 928 Bytes
/
build.gradle
File metadata and controls
35 lines (26 loc) · 928 Bytes
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
plugins {
id "java-library"
}
group = 'com.zebrunner'
version = "${version != 'unspecified' ? version : '1.0-SNAPSHOT'}"
ext.coreVersion = project.properties['core.version'] ?: '1.0.0'
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url "https://nexus.zebrunner.dev/repository/ce-snapshots/"
}
}
dependencies {
api("com.zebrunner:agent-core:${coreVersion}")
implementation('org.slf4j:slf4j-api:1.7.36')
implementation('com.google.code.gson:gson:2.9.0')
implementation("org.junit.jupiter:junit-jupiter-api:5.9.2")
implementation("org.junit.jupiter:junit-jupiter-engine:5.9.2")
implementation("org.junit.platform:junit-platform-launcher:1.9.2")
annotationProcessor("org.projectlombok:lombok:1.18.10")
compileOnly("org.projectlombok:lombok:1.18.10")
}
apply from: 'publish-maven.gradle'