File tree 2 files changed +4
-4
lines changed
buildSrc/src/main/java/org/opensearch/gradle
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public static void configureRepositories(Project project) {
94
94
String revision = matcher .group (1 );
95
95
MavenArtifactRepository luceneRepo = repos .maven (repo -> {
96
96
repo .setName ("lucene-snapshots" );
97
- repo .setUrl ("https://artifacts .opensearch.org/snapshots/lucene/" );
97
+ repo .setUrl ("https://ci .opensearch.org/ci/dbc /snapshots/lucene/" );
98
98
});
99
99
repos .exclusiveContent (exclusiveRepo -> {
100
100
exclusiveRepo .filter (
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
13
13
gradlePluginPortal()
14
14
// TODO: Find the way to use the repositories from RepositoriesSetupPlugin
15
15
maven {
16
- url = " https://artifacts .opensearch.org/snapshots/lucene/"
16
+ url = " https://ci .opensearch.org/ci/dbc /snapshots/lucene/"
17
17
}
18
18
}
19
19
@@ -37,14 +37,14 @@ tasks.withType(JacocoReport).configureEach {
37
37
if (System . getProperty(" tests.coverage" )) {
38
38
reporting {
39
39
reports {
40
- testCodeCoverageReport(JacocoCoverageReport ) {
40
+ testCodeCoverageReport(JacocoCoverageReport ) {
41
41
testType = TestSuiteType . UNIT_TEST
42
42
}
43
43
}
44
44
}
45
45
46
46
// Attach code coverage report task to Gradle check task
47
47
project. getTasks(). named(JavaBasePlugin . CHECK_TASK_NAME ). configure {
48
- dependsOn tasks. named(' testCodeCoverageReport' , JacocoReport )
48
+ dependsOn tasks. named(' testCodeCoverageReport' , JacocoReport )
49
49
}
50
50
}
You can’t perform that action at this time.
0 commit comments