You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build.gradle
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,28 +28,32 @@ allprojects {
28
28
29
29
subprojects { apply plugin: "java" }
30
30
31
+
project(':spring-esdata-loader-core') {
32
+
description ="Core implementation of spring-esdata-loader"
33
+
}
34
+
31
35
project(':spring-esdata-loader-junit4') {
32
36
apply plugin: 'java-library'
33
37
dependencies {
34
38
api project(':spring-esdata-loader-core')
35
39
}
36
-
description ="JUnit4 implementation of spring-esdata-loader"
40
+
description ="JUnit4 implementation of spring-esdata-loader: testing library to easily load data to test your spring-data-elasticsearch-based projects"
37
41
}
38
42
39
43
project(':spring-esdata-loader-junit-jupiter') {
40
44
apply plugin: 'java-library'
41
45
dependencies {
42
46
api project(':spring-esdata-loader-core')
43
47
}
44
-
description ="JUnit Jupiter implementation of spring-esdata-loader"
48
+
description ="JUnit Jupiter implementation of spring-esdata-loader: testing library to easily load data to test your spring-data-elasticsearch-based projects"
0 commit comments