File tree Expand file tree Collapse file tree 9 files changed +27
-13
lines changed Expand file tree Collapse file tree 9 files changed +27
-13
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <suppressions xmlns =" https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd" >
2
+ <suppressions xmlns =" https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd" >
5
+
6
+ <suppress >
7
+ <cpe >cpe:/a:bootstrap:bootstrap:5.3.3</cpe >
8
+ <cve >CVE-2024-6484</cve >
9
+ <cve >CVE-2024-6531</cve >
10
+ </suppress >
11
+
3
12
</suppressions >
Original file line number Diff line number Diff line change 7
7
8
8
plugins {
9
9
id ' java'
10
- id ' org.springframework.boot' version ' 3.3.1 '
11
- id ' io.spring.dependency-management' version ' 1.1.5 '
10
+ id ' org.springframework.boot' version ' 3.3.3 '
11
+ id ' io.spring.dependency-management' version ' 1.1.6 '
12
12
}
13
13
14
14
group = ' finos.traderx.account-service'
@@ -23,7 +23,7 @@ dependencies {
23
23
implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
24
24
implementation ' org.springframework.boot:spring-boot-starter-web'
25
25
implementation ' com.h2database:h2:2.2.224'
26
- implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5 .0'
26
+ implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6 .0'
27
27
28
28
testImplementation ' org.springframework.boot:spring-boot-starter-test'
29
29
}
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ spring.datasource.password=${DATABASE_DBPASS:sa}
7
7
spring.data.jpa.database-platform =org.hibernate.dialect.H2Dialect
8
8
spring.data.jpa.show-sql =true
9
9
spring.jpa.hibernate.naming.physical-strategy =org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
10
+ spring.threads.virtual.enabled =true
10
11
11
12
# To avoid "Request header is too large" when application is backed by oidc proxy.
12
13
server.max-http-request-header-size =1000000
Original file line number Diff line number Diff line change 7
7
8
8
plugins {
9
9
id ' java'
10
- id ' org.springframework.boot' version ' 3.3.1 '
11
- id ' io.spring.dependency-management' version ' 1.1.5 '
10
+ id ' org.springframework.boot' version ' 3.3.3 '
11
+ id ' io.spring.dependency-management' version ' 1.1.6 '
12
12
}
13
13
14
14
group = ' finos.traderx.position-service'
@@ -23,7 +23,7 @@ dependencies {
23
23
implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
24
24
implementation ' org.springframework.boot:spring-boot-starter-web'
25
25
implementation ' com.h2database:h2:2.2.224'
26
- implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5 .0'
26
+ implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6 .0'
27
27
28
28
testImplementation ' org.springframework.boot:spring-boot-starter-test'
29
29
}
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ spring.datasource.password=${DATABASE_DBPASS:sa}
7
7
spring.data.jpa.database-platform =org.hibernate.dialect.H2Dialect
8
8
spring.data.jpa.show-sql =true
9
9
spring.jpa.hibernate.naming.physical-strategy =org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
10
+ spring.threads.virtual.enabled =true
10
11
11
12
# To avoid "Request header is too large" when application is backed by oidc proxy.
12
13
server.max-http-request-header-size =1000000
Original file line number Diff line number Diff line change 7
7
8
8
plugins {
9
9
id ' java'
10
- id ' org.springframework.boot' version ' 3.3.1 '
11
- id ' io.spring.dependency-management' version ' 1.1.5 '
10
+ id ' org.springframework.boot' version ' 3.3.3 '
11
+ id ' io.spring.dependency-management' version ' 1.1.6 '
12
12
}
13
13
14
14
group = ' finos.traderx.trade-processor'
@@ -23,7 +23,7 @@ dependencies {
23
23
implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
24
24
implementation ' org.springframework.boot:spring-boot-starter-web'
25
25
implementation ' com.h2database:h2:2.2.224'
26
- implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5 .0'
26
+ implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6 .0'
27
27
28
28
implementation(' org.json:json:20240303' ) {
29
29
because ' previous versions are affected by multiple CVE'
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ spring.data.jpa.show-sql=true
9
9
spring.jpa.hibernate.ddl-auto =update
10
10
11
11
spring.jpa.hibernate.naming.physical-strategy =org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
12
+ spring.threads.virtual.enabled =true
12
13
13
14
trade.feed.address =${TRADE_FEED_ADDRESS:http://${TRADE_FEED_HOST:localhost}:18086}
14
15
Original file line number Diff line number Diff line change 7
7
8
8
plugins {
9
9
id ' java'
10
- id ' org.springframework.boot' version ' 3.3.1 '
11
- id ' io.spring.dependency-management' version ' 1.1.5 '
10
+ id ' org.springframework.boot' version ' 3.3.3 '
11
+ id ' io.spring.dependency-management' version ' 1.1.6 '
12
12
}
13
13
14
14
group = ' finos.traderx.trade-service'
@@ -27,7 +27,7 @@ dependencies {
27
27
implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
28
28
implementation ' org.springframework.boot:spring-boot-starter-web'
29
29
implementation ' com.h2database:h2:2.2.224'
30
- implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5 .0'
30
+ implementation ' org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6 .0'
31
31
32
32
implementation(' org.json:json:20240303' ) {
33
33
because ' previous versions are affected by multiple CVE'
Original file line number Diff line number Diff line change 1
1
server.port =${TRADING_SERVICE_PORT:18092}
2
+ spring.threads.virtual.enabled =true
3
+
2
4
people.service.url =${PEOPLE_SERVICE_URL:http://${PEOPLE_SERVICE_HOST:localhost}:18089}
3
5
account.service.url =${ACCOUNT_SERVICE_URL:http://${ACCOUNT_SERVICE_HOST:localhost}:18088}
4
6
reference.data.service.url =${REFERENCE_DATA_SERVICE_URL:http://${REFERENCE_DATA_HOST:localhost}:18085}
You can’t perform that action at this time.
0 commit comments