Skip to content

Commit

Permalink
[SELC-5995] Add supportEmail to notification (#600)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5a24281)
  • Loading branch information
andrea-putzu committed Nov 12, 2024
1 parent ebb29e1 commit c8df40f
Show file tree
Hide file tree
Showing 3 changed files with 186 additions and 183 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

This repo structure and build monorepo with Apache Maven for selfcare onboarding domain.

Applications under apps/ depend on shared code under libs/. test-coverage/ is used to assess the test coverage of the entire project.

Applications under apps/ depend on shared code under libs/. test-coverage/ is used to assess the test coverage of the
entire project.

```
.
Expand All @@ -24,8 +24,8 @@ Look at single README module for more information.

## Infrastructure

The [`.infra/`] sub folder contains terraform files for deploying infrastructure such as container apps or functions in Azure.

The [`.infra/`] sub folder contains terraform files for deploying infrastructure such as container apps or functions in
Azure.

## Continous integration

Expand All @@ -48,14 +48,14 @@ and usage of a couple of lesser known command line switches.
|:---------------------------------------------------------------------------------------------------|:----------------------:|:--------------------------------------------------------------------------------------|
| Build the world | `.` | `mvn clean package -DskipTests` |
| Run `onboarding-ms` | `.` | `java -jar apps/onboarding-ms/target/onboarding-ms-1.0.0-SNAPSHOT.jar` |
| Build and test the world | `.` | `mvn clean package` |
| Build and test the world | `.` | `mvn clean package` |
| Build the world | `./apps/onboarding-ms` | `mvn --file ../.. clean package -DskipTests` |
| Build `onboarding-ms` and its dependencies | `.` | `mvn --projects :onboarding-ms --also-make clean package -DskipTests` |
| Build `onboarding-ms` and its dependencies | `./apps/onboarding-ms` | `mvn --file ../.. --projects :onboarding-ms --also-make clean package -DskipTests` |
| Build `onboarding-sdk` and its dependents (aka. reverse dependencies or *rdeps* in Bazel parlance) | `.` | `mvn --projects :onboarding-sdk-pom --also-make-dependents clean package -DskipTests` |
| Print dependencies of `onboarding-sdk` | `./apps/onboarding-ms` | `mvn dependency:list` |
| Change version of `onboarding-sdk` | `.` | `mvn versions:set -DnewVersion=0.3.5 --projects :onboarding-sdk-pom ` |
| Persist version of `onboarding-sdk` | `.` | `mvn versions:commit ` |
| Change version of `onboarding-sdk` | `.` | `mvn versions:set -DnewVersion=0.3.5 --projects :onboarding-sdk-pom ` |
| Persist version of `onboarding-sdk` | `.` | `mvn versions:commit ` |

-----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public class InstitutionToNotify {
private String category;
private String subUnitType;
private RootParent rootParent;
private String supportEmail;

public InstitutionType getInstitutionType() {
return institutionType;
Expand Down Expand Up @@ -178,4 +179,12 @@ public RootParent getRootParent() {
public void setRootParent(RootParent rootParent) {
this.rootParent = rootParent;
}

public String getSupportEmail() {
return supportEmail;
}

public void setSupportEmail(String supportEmail) {
this.supportEmail = supportEmail;
}
}
Loading

0 comments on commit c8df40f

Please sign in to comment.