Skip to content

Commit

Permalink
Issue #KN-920 fix: CSP changes load cloud storage SDK from config
Browse files Browse the repository at this point in the history
  • Loading branch information
pallakartheekreddy committed Aug 7, 2023
1 parent 2988a48 commit 2af8353
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- run:
name: Execute coverage report
command: |
mvn clean scoverage:report
mvn clean scoverage:report -DCLOUD_STORE_GROUP_ID=$CLOUD_STORE_GROUP_ID -DCLOUD_STORE_ARTIFACT_ID=$CLOUD_STORE_ARTIFACT_ID -DCLOUD_STORE_VERSION=$CLOUD_STORE_VERSION
- run:
name: Save test results
command: |
Expand Down
6 changes: 3 additions & 3 deletions jobs-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
<version>0.1.1</version>
</dependency>
<dependency>
<groupId>org.sunbird</groupId>
<artifactId>cloud-store-sdk_2.12</artifactId>
<version>1.4.6</version>
<groupId>${CLOUD_STORE_GROUP_ID}</groupId>
<artifactId>${CLOUD_STORE_ARTIFACT_ID}</artifactId>
<version>${CLOUD_STORE_VERSION}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
Expand Down

0 comments on commit 2af8353

Please sign in to comment.