forked from zebrunner/java-agent-junit5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (25 loc) · 837 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
plugins {
id "java-library"
}
group = 'com.zebrunner'
version = "${version != 'unspecified' ? version : '1.0-SNAPSHOT'}"
ext.coreVersion = project.properties['core.version'] ?: '1.0.0'
repositories {
jcenter()
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.junit.jupiter:junit-jupiter-api:5.6.1")
implementation("org.junit.jupiter:junit-jupiter-engine:5.6.1")
implementation("org.junit.platform:junit-platform-launcher:1.5.2")
annotationProcessor("org.projectlombok:lombok:1.18.10")
compileOnly("org.projectlombok:lombok:1.18.10")
}
apply from: 'publish-maven.gradle'