-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
48 lines (35 loc) · 1.37 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
43
44
45
46
47
48
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/5.6.4/userguide/java_library_plugin.html
*/
plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}
sourceCompatibility = '11'
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.18'
annotationProcessor 'org.projectlombok:lombok:1.18.18'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.18'
implementation 'org.slf4j:slf4j-api:1.7.29'
implementation 'org.aspectj:aspectjweaver:1.8.8'
// https://mvnrepository.com/artifact/org.springframework/spring-webflux
implementation group: 'org.springframework', name: 'spring-webflux', version: '5.2.13.RELEASE'
testImplementation 'org.projectlombok:lombok'
// https://mvnrepository.com/artifact/junit/junit
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
// https://mvnrepository.com/artifact/org.mockito/mockito-core
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.8.0'
}
jar {
enabled = true
}