Skip to content

Move sonar properties from workflow to pom.xml #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ on:

jobs:
build:
uses: powsybl/github-ci/.github/workflows/build-backend-app-generic.yml@8e3547c7f6d98c23095896b6097294f22100b122
uses: powsybl/github-ci/.github/workflows/build-backend-app-generic.yml@39565de6fd7d394ed76fa09e5197ffb1350ff1e6
with:
sonarOrganization: powsybl-ci-github
sonarProjectKey: com.powsybl:powsybl-single-line-diagram-server
dockerImage: docker.io/powsybl/single-line-diagram-server
dockerUsername: powsyblci
eventOrganizations: gridsuite
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ on:

jobs:
run-patch:
uses: powsybl/github-ci/.github/workflows/patch-backend-app-generic.yml@8e3547c7f6d98c23095896b6097294f22100b122
uses: powsybl/github-ci/.github/workflows/patch-backend-app-generic.yml@39565de6fd7d394ed76fa09e5197ffb1350ff1e6
with:
githubappId: ${{ vars.POWSYBL_ACTIONS_APPID }}
sonarOrganization: powsybl-ci-github
sonarProjectKey: com.powsybl:powsybl-single-line-diagram-server
dockerImage: docker.io/powsybl/single-line-diagram-server
dockerUsername: powsyblci
releaseVersion: ${{ github.event.inputs.releaseVersion }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ on:

jobs:
run-release:
uses: powsybl/github-ci/.github/workflows/release-backend-app-generic.yml@8e3547c7f6d98c23095896b6097294f22100b122
uses: powsybl/github-ci/.github/workflows/release-backend-app-generic.yml@39565de6fd7d394ed76fa09e5197ffb1350ff1e6
with:
githubappId: ${{ vars.POWSYBL_ACTIONS_APPID }}
sonarOrganization: powsybl-ci-github
sonarProjectKey: com.powsybl:powsybl-single-line-diagram-server
dockerImage: docker.io/powsybl/single-line-diagram-server
dockerUsername: powsyblci
releaseVersion: ${{ github.event.inputs.releaseVersion }}
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<liquibase-hibernate-package>com.powsybl.sld.server</liquibase-hibernate-package>
<powsybl-ws-dependencies.version>2.20.0</powsybl-ws-dependencies.version>
<sonar.organization>powsybl-ci-github</sonar.organization>
<sonar.projectKey>com.powsybl:powsybl-single-line-diagram-server</sonar.projectKey>
</properties>

<build>
Expand Down