Skip to content

Commit c5a9e41

Browse files
authored
Keep itest task empty in build.gradle to avoid a warning during build (#145)
1 parent 8995d0d commit c5a9e41

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [[NEXT]](https://github.com/iExecBlockchainComputing/iexec-result-proxy/releases/tag/vNEXT) 2024
66

7+
### Quality
8+
9+
- Keep `itest` task empty in `build.gradle` to avoid a warning during build. (#145)
10+
711
### Dependency Upgrades
812

913
- Upgrade to `eclipse-temurin:11.0.24_8-jre-focal`. (#141)

build.gradle

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ plugins {
99
}
1010

1111
ext {
12-
springCloudVersion = '2021.0.8'
1312
jjwtVersion = '0.11.5'
1413
testContainersVersion = '1.20.4'
1514
}
@@ -55,8 +54,9 @@ dependencies {
5554
implementation 'org.springframework.boot:spring-boot-starter-actuator'
5655
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
5756
implementation 'org.springframework.boot:spring-boot-starter-web'
58-
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
5957
implementation "org.springframework.retry:spring-retry"
58+
// required for spring-retry
59+
runtimeOnly 'org.aspectj:aspectjweaver'
6060

6161
// observability
6262
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
@@ -76,12 +76,6 @@ dependencies {
7676
implementation 'net.jodah:expiringmap:0.5.10'
7777
}
7878

79-
dependencyManagement {
80-
imports {
81-
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
82-
}
83-
}
84-
8579
springBoot {
8680
buildInfo()
8781
}
@@ -111,7 +105,7 @@ tasks.withType(Test).configureEach {
111105
systemProperty "mongo.image", "mongo:7.0.15-jammy"
112106
}
113107

114-
tasks.register('itest', Test) {
108+
tasks.register('itest') {
115109
group 'Verification'
116110
description 'Runs the integration tests.'
117111
}

0 commit comments

Comments
 (0)