Skip to content

Commit

Permalink
merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
pstreef committed Aug 26, 2024
1 parent 98c5605 commit 7ca07ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/io/moderne/organizations/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public static void main(String[] args) {
}

@Bean
GitRemote.Parser gitRemoteParser(ScmConfiguration scmConfiguration) {
GitRemote.Parser gitRemoteParser(ModerneConfiguration moderneConfiguration) {
ScmConfiguration scmConfiguration = moderneConfiguration.getScm();
GitRemote.Parser gitRemoteParser = new GitRemote.Parser();
scmConfiguration.getRepositories().forEach(scmRepository -> gitRemoteParser.registerRemote(scmRepository.getType(), scmRepository.getBaseUrl(), scmRepository.getAlternativeUrls()));
return gitRemoteParser;
Expand Down

0 comments on commit 7ca07ec

Please sign in to comment.