forked from UnitTestBot/UTBotJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
15 lines (14 loc) · 746 Bytes
/
build.gradle
File metadata and controls
15 lines (14 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
id 'java-library'
}
dependencies {
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.2'
implementation group: 'com.github.stephenc.findbugs', name: 'findbugs-annotations', version: '1.3.9-1'
implementation 'org.projectlombok:lombok:1.18.20'
testImplementation group: 'org.mockito', name:'mockito-core', version: mockitoVersion
annotationProcessor 'org.projectlombok:lombok:1.18.20'
implementation(project(":utbot-api"))
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
implementation group: 'javax.validation', name: 'validation-api', version: '2.0.0.Final'
implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
}