Skip to content

Commit

Permalink
fix: use read ossrh repo for exists plugin (open-feature#87)
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <toddbaert@gmail.com>

Signed-off-by: Todd Baert <toddbaert@gmail.com>
  • Loading branch information
toddbaert authored Aug 30, 2022
1 parent 391652e commit bda2651
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jobs:
# letting exists-maven-plugin skip the nexus-staging-maven-plugin's entire deploy goal if the artifact exists.
run: |
modules=($(cat pom.xml | grep "<module>" | sed 's/\s*<.*>\(.*\)<.*>/\1/'))
for module in "${modules[@]}"
do
mvn --batch-mode --projects $module --settings release/m2-settings.xml clean deploy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class OpenTelemetryHookTest {

@Test
@DisplayName("a simple test")
@DisplayName("a simple test.")
void test() {
assertThat(OpenTelemetryHook.test()).isEqualTo(true);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
</executions>
<configuration>
<skip>${maven.deploy.skip}</skip>
<repository>https://repo1.maven.org/maven2</repository>
<repository>https://s01.oss.sonatype.org/service/local/repositories/releases/content</repository>
<snapshotRepository>https://s01.oss.sonatype.org/content/repositories/snapshots</snapshotRepository>
<snapshotServerId>ossrh</snapshotServerId>
</configuration>
Expand Down

0 comments on commit bda2651

Please sign in to comment.