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
For integration test, you can use ``-Dtests.class`` “UT full path” to run a task individually. For example ``./gradlew :integ-test:integTest -Dtests.class="*QueryIT"``.
Copy file name to clipboardExpand all lines: build.gradle
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ plugins {
65
65
id 'checkstyle'
66
66
id "io.freefair.lombok" version "6.4.0"
67
67
id 'jacoco'
68
+
id 'com.diffplug.spotless' version '6.19.0'
68
69
}
69
70
70
71
// import versions defined in https://github.com/opensearch-project/OpenSearch/blob/main/buildSrc/src/main/java/org/opensearch/gradle/OpenSearchJavaPlugin.java#L94
@@ -79,6 +80,25 @@ repositories {
79
80
maven { url 'https://jitpack.io' }
80
81
}
81
82
83
+
// Spotless checks will be added as PRs are applied to resolve each style issue is approved.
0 commit comments