Skip to content
Snippets Groups Projects
Commit 056d3ee1 authored by Zachary Sabourin's avatar Zachary Sabourin
Browse files

Merge branch 'zacharysabourin/main/63' into 'main'

feat: Update to latest common release + fix broken tests

Closes #63

See merge request !25
parents eb00ba76 5acd6e5c
No related branches found
No related tags found
1 merge request!25feat: Update to latest common release + fix broken tests
Pipeline #29429 passed
......@@ -19,7 +19,7 @@
<surefire-plugin.version>3.0.0-M5</surefire-plugin.version>
<auto-value.version>1.8.2</auto-value.version>
<hibernate.version>5.5.6.Final</hibernate.version>
<eclipse-api-version>0.7.6-SNAPSHOT</eclipse-api-version>
<eclipse-api-version>0.7.6</eclipse-api-version>
<org.mapstruct.version>1.4.1.Final</org.mapstruct.version>
<fdndb-api-version>1.0.4</fdndb-api-version>
<sonar.sources>src/main</sonar.sources>
......
......@@ -150,4 +150,20 @@ public class MockProfileAPI implements ProfileAPI {
return results;
}
/*
* This endpoint is not used by this application
*/
@Override
public EfUser getUserByEfUsername(String token, String username) {
throw new UnsupportedOperationException("Unimplemented method 'getUserByEfUsername'");
}
/*
* This endpoint is not used by this application
*/
@Override
public EfUser getUserByGithubHandle(String token, String handle) {
throw new UnsupportedOperationException("Unimplemented method 'getUserByGithubHandle'");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment