-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
executable file
·63 lines (52 loc) · 2.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
plugins {
id "java"
id "com.gradle.build-scan" version "2.4.2"
id "nebula.dependency-lock" version "8.0.0" apply false
id "nebula.info-dependencies" version "5.1.0" apply false
id "nebula.contacts" version "5.1.0" apply false
id "nebula.maven-publish" version "13.6.1" apply false
id "nebula.javadoc-jar" version "13.6.1" apply false
id "nebula.source-jar" version "13.6.1" apply false
id "nebula.gradle-git-scm" version "4.1.6" apply false
id "nebula.nebula-bintray" version "7.3.1" apply false
id "org.ajoberstar.git-publish" version "2.1.1" apply false
id "de.maltsev.gradle.semanticrelease" apply false
}
description = "Set of JUnit Rules & Extensions to easily load data to test your spring-data elasticsearch-based projects"
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
allprojects {
apply plugin: 'nebula.publish-verification'
group = "com.github.tinesoft"
repositories {
jcenter()
}
}
subprojects { apply plugin: "java" }
project(":spring-esdata-loader-core") {
description = "Core implementation of spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects"
}
project(":spring-esdata-loader-junit4") {
apply plugin: "java-library"
dependencies {
api project(":spring-esdata-loader-core")
}
description = "JUnit4 implementation of spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects"
}
project(":spring-esdata-loader-junit-jupiter") {
apply plugin: "java-library"
dependencies {
api project(":spring-esdata-loader-core")
}
description = "JUnit Jupiter implementation of spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects"
}
project(":spring-esdata-loader-demo") {
apply plugin: "java"
dependencies {
implementation project(":spring-esdata-loader-junit4"), project(":spring-esdata-loader-junit-jupiter")
}
description = "Demo project for spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects"
}
apply from: "$rootDir/gradle/rootmodule.gradle"