Skip to content

Commit

Permalink
EPMRPP-87594 fix CVEs
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Nov 16, 2023
1 parent 9e28271 commit a4b5de2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ext['hibernate-validator.version'] = '6.1.5.Final'
//https://nvd.nist.gov/vuln/detail/CVE-2020-13692
//ext['postgresql.version'] = '42.2.13'
//https://nvd.nist.gov/vuln/detail/CVE-2020-9488
ext['log4j2.version'] = '2.17.1'
ext['log4j2.version'] = '2.21.1'


dependencyManagement {
Expand Down Expand Up @@ -105,7 +105,7 @@ dependencies {
implementation 'org.yaml:snakeyaml:1.33'
implementation 'org.hibernate:hibernate-core:5.4.24.Final'
implementation 'org.springframework:spring-core:5.3.30'
implementation "com.rabbitmq:http-client:5.0.0"
implementation "com.rabbitmq:http-client:5.2.0"
}

processResources {
Expand Down
26 changes: 11 additions & 15 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ rp:
db:
url: jdbc:postgresql://${rp.db.host}:${rp.db.port}/${rp.db.name}
name: reportportal
host: postgres
host: localhost
port: 5432
user:
pass:
user: rpuser
pass: rppass
jwt:
signing-key:
token:
Expand Down Expand Up @@ -85,18 +85,14 @@ rp:
amqp:
addresses: amqp://${rp.amqp.user}:${rp.amqp.pass}@${rp.amqp.host}:${rp.amqp.port}
base-vhost: /
host: rabbitmq
host: localhost
port: 5672
user:
pass:
user: rabbitmq
pass: rabbitmq

datastore:
path: /data/storage
type: minio
endpoint: http://play.min.io
accessKey:
secretKey:
bucketPrefix: prj-
bucketPostfix:
defaultBucketName: rp-bucket
region: us-west-1
type: filesystem
path: ${java.io.tmpdir}${file.separator}reportportal${file.separator}datastore
endpoint: http://localhost:9000
accessKey: minio
secretKey: minio123

0 comments on commit a4b5de2

Please sign in to comment.