File tree 2 files changed +5
-14
lines changed
2 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -25,25 +25,14 @@ jobs:
25
25
with :
26
26
java-version : ${{ matrix.java }}
27
27
28
- # dependencies: OpenSearch
29
- - name : Checkout OpenSearch
30
- uses : actions/checkout@v2
31
- with :
32
- repository : ' opensearch-project/OpenSearch'
33
- path : OpenSearch
34
- ref : ' 1.1'
35
- - name : Build OpenSearch
36
- working-directory : ./OpenSearch
37
- run : ./gradlew publishToMavenLocal
38
-
39
28
# common-utils
40
29
- name : Build and Test
41
30
run : |
42
- ./gradlew build -Dopensearch.version=1.1 .0-SNAPSHOT
31
+ ./gradlew build -Dopensearch.version=1.2 .0-SNAPSHOT
43
32
44
33
- name : Publish to Maven Local
45
34
run : |
46
- ./gradlew publishToMavenLocal -Dopensearch.version=1.1 .0-SNAPSHOT
35
+ ./gradlew publishToMavenLocal -Dopensearch.version=1.2 .0-SNAPSHOT
47
36
48
37
- name : Upload Coverage Report
49
38
uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change 12
12
buildscript {
13
13
ext {
14
14
opensearch_group = " org.opensearch"
15
- opensearch_version = System . getProperty(" opensearch.version" , " 1.1 .0-SNAPSHOT" )
15
+ opensearch_version = System . getProperty(" opensearch.version" , " 1.2 .0-SNAPSHOT" )
16
16
kotlin_version = System . getProperty(" kotlin.version" , " 1.4.32" )
17
17
}
18
18
@@ -21,6 +21,7 @@ buildscript {
21
21
mavenCentral()
22
22
maven { url " https://plugins.gradle.org/m2/" }
23
23
jcenter()
24
+ maven { url " https://aws.oss.sonatype.org/content/repositories/snapshots" }
24
25
}
25
26
26
27
dependencies {
@@ -42,6 +43,7 @@ repositories {
42
43
mavenCentral()
43
44
maven { url " https://plugins.gradle.org/m2/" }
44
45
jcenter()
46
+ maven { url " https://aws.oss.sonatype.org/content/repositories/snapshots" }
45
47
}
46
48
47
49
ext {
You can’t perform that action at this time.
0 commit comments