Skip to content

Commit db951c8

Browse files
committed
Updated gradle.properties
1 parent 36b8921 commit db951c8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
- uses: actions/setup-java@v1
2121
with:
2222
java-version: 11
23-
- name: Build Snapshot
23+
- name: Build and Analyze
2424
env:
2525
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
26-
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
2726
run: |
2827
cd initial
2928
export CODEARTIFACT_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain test --domain-owner ${{ secrets.AWS_ACCOUNT_ID }} --query authorizationToken --output text`

.github/workflows/pr-flow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: PR-BUILD
33
on:
44
workflow_call:
55
pull_request:
6-
branches: [ master ]
6+
branches: [ development ]
77

88
jobs:
99
PR-CHECK:
@@ -17,5 +17,5 @@ jobs:
1717
run: |
1818
cd initial
1919
bash ./gradlew -Pbuild_target=SNAPSHOT clean build jacocoTestReport spotlessApply spotbugsMain
20-
bash ./gradlew -Pbuild_target=SNAPSHOT dependencyCheckAggregate --info
20+
# bash ./gradlew -Pbuild_target=SNAPSHOT dependencyCheckAggregate --info
2121
bash ./gradlew -Pbuild_target=SNAPSHOT sonarqube showSonarQubeLink --info

initial/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
artifactory_contextUrl=https://test-137546367210.d.codeartifact.us-east-1.amazonaws.com/maven/spring-services/
22
org.gradle.daemon=true
33
org.gradle.parallel=true
4+
systemProp.sonar.host.url=http://20.127.249.132
45
systemProp.sonar.projectKey=rest-uservice
56
systemProp.sonar.buildbreaker.skip=false

0 commit comments

Comments
 (0)