Skip to content

Commit bda2651

Browse files
authored
fix: use read ossrh repo for exists plugin (#87)
Signed-off-by: Todd Baert <[email protected]> Signed-off-by: Todd Baert <[email protected]>
1 parent 391652e commit bda2651

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Diff for: .github/workflows/release-please.yml

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
# letting exists-maven-plugin skip the nexus-staging-maven-plugin's entire deploy goal if the artifact exists.
6161
run: |
6262
modules=($(cat pom.xml | grep "<module>" | sed 's/\s*<.*>\(.*\)<.*>/\1/'))
63-
6463
for module in "${modules[@]}"
6564
do
6665
mvn --batch-mode --projects $module --settings release/m2-settings.xml clean deploy

Diff for: hooks/open-telemetry/src/test/java/dev/openfeature/contrib/hooks/otel/OpenTelemetryHookTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class OpenTelemetryHookTest {
99

1010
@Test
11-
@DisplayName("a simple test")
11+
@DisplayName("a simple test.")
1212
void test() {
1313
assertThat(OpenTelemetryHook.test()).isEqualTo(true);
1414
}

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
</executions>
196196
<configuration>
197197
<skip>${maven.deploy.skip}</skip>
198-
<repository>https://repo1.maven.org/maven2</repository>
198+
<repository>https://s01.oss.sonatype.org/service/local/repositories/releases/content</repository>
199199
<snapshotRepository>https://s01.oss.sonatype.org/content/repositories/snapshots</snapshotRepository>
200200
<snapshotServerId>ossrh</snapshotServerId>
201201
</configuration>

0 commit comments

Comments
 (0)