|
1 | | -buildscript { |
2 | | - repositories { |
3 | | - jcenter() |
4 | | - maven { url "https://plugins.gradle.org/m2/" } |
5 | | - } |
6 | | - dependencies { |
7 | | - classpath "com.netflix.nebula:gradle-dependency-lock-plugin:7.6.7" |
8 | | - classpath "com.netflix.nebula:gradle-info-plugin:5.0.3" |
9 | | - classpath "com.netflix.nebula:gradle-contacts-plugin:5.0.3" |
10 | | - classpath "com.netflix.nebula:gradle-git-scm-plugin:4.1.6" |
11 | | - classpath "com.netflix.nebula:nebula-publishing-plugin:8.1.0" |
12 | | - classpath "de.maltsev:gradle-semantic-release-plugin:0.3.4" |
13 | | - classpath "com.netflix.nebula:nebula-bintray-plugin:7.3.0" |
14 | | - classpath "org.ajoberstar:gradle-git-publish:2.1.1" |
15 | | - } |
| 1 | + |
| 2 | +plugins { |
| 3 | + id "java" |
| 4 | + id "com.gradle.build-scan" version "2.4.2" |
| 5 | + |
| 6 | + id "nebula.dependency-lock" version "8.0.0" apply false |
| 7 | + id "nebula.info-dependencies" version "5.1.0" apply false |
| 8 | + id "nebula.contacts" version "5.1.0" apply false |
| 9 | + id "nebula.maven-publish" version "13.6.1" apply false |
| 10 | + id "nebula.javadoc-jar" version "13.6.1" apply false |
| 11 | + id "nebula.source-jar" version "13.6.1" apply false |
| 12 | + id "nebula.gradle-git-scm" version "4.1.6" apply false |
| 13 | + id "nebula.nebula-bintray" version "7.3.1" apply false |
| 14 | + id "org.ajoberstar.git-publish" version "2.1.1" apply false |
| 15 | + id "de.maltsev.gradle.semanticrelease" apply false |
16 | 16 | } |
| 17 | + |
17 | 18 | description = "Set of JUnit Rules & Extensions to easily load data to test your spring-data elasticsearch-based projects" |
18 | 19 |
|
19 | | -allprojects { |
20 | | - apply plugin: "de.maltsev.gradle.semanticrelease" |
21 | | - group = 'com.github.tinesoft' |
| 20 | +buildScan { |
| 21 | + termsOfServiceUrl = 'https://gradle.com/terms-of-service' |
| 22 | + termsOfServiceAgree = 'yes' |
| 23 | +} |
22 | 24 |
|
| 25 | +allprojects { |
| 26 | + apply plugin: 'nebula.publish-verification' |
| 27 | + group = "com.github.tinesoft" |
23 | 28 | repositories { |
24 | 29 | jcenter() |
25 | 30 | } |
26 | 31 | } |
27 | 32 |
|
28 | 33 | subprojects { apply plugin: "java" } |
29 | 34 |
|
30 | | -project(':spring-esdata-loader-core') { |
| 35 | +project(":spring-esdata-loader-core") { |
31 | 36 | description = "Core implementation of spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects" |
32 | 37 | } |
33 | 38 |
|
34 | | -project(':spring-esdata-loader-junit4') { |
35 | | - apply plugin: 'java-library' |
| 39 | +project(":spring-esdata-loader-junit4") { |
| 40 | + apply plugin: "java-library" |
36 | 41 | dependencies { |
37 | | - api project(':spring-esdata-loader-core') |
| 42 | + api project(":spring-esdata-loader-core") |
38 | 43 | } |
39 | 44 | description = "JUnit4 implementation of spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects" |
40 | 45 | } |
41 | 46 |
|
42 | | -project(':spring-esdata-loader-junit-jupiter') { |
43 | | - apply plugin: 'java-library' |
| 47 | +project(":spring-esdata-loader-junit-jupiter") { |
| 48 | + apply plugin: "java-library" |
44 | 49 | dependencies { |
45 | | - api project(':spring-esdata-loader-core') |
| 50 | + api project(":spring-esdata-loader-core") |
46 | 51 | } |
47 | 52 | description = "JUnit Jupiter implementation of spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects" |
48 | 53 | } |
49 | 54 |
|
50 | | -project(':spring-esdata-loader-demo') { |
51 | | - apply plugin: 'java' |
| 55 | +project(":spring-esdata-loader-demo") { |
| 56 | + apply plugin: "java" |
52 | 57 | dependencies { |
53 | | - implementation project(':spring-esdata-loader-junit4'), project(':spring-esdata-loader-junit-jupiter') |
| 58 | + implementation project(":spring-esdata-loader-junit4"), project(":spring-esdata-loader-junit-jupiter") |
54 | 59 | } |
55 | 60 | description = "Demo project for spring-esdata-loader: a library to easily load data to test your spring-data-elasticsearch-based projects" |
56 | | - |
57 | 61 | } |
58 | 62 |
|
59 | 63 | apply from: "$rootDir/gradle/rootmodule.gradle" |
60 | | - |
|
0 commit comments