mirror of https://github.com/dapr/java-sdk.git
Ensure same Spring Boot version is used across different tests (#1109)
Signed-off-by: Artur Ciocanu <ciocanu@adobe.com> Co-authored-by: Artur Ciocanu <ciocanu@adobe.com>
This commit is contained in:
parent
1681816253
commit
93a7bc5295
|
@ -24,7 +24,6 @@
|
||||||
<maven.deploy.skip>true</maven.deploy.skip>
|
<maven.deploy.skip>true</maven.deploy.skip>
|
||||||
<spotbugs.fail>false</spotbugs.fail>
|
<spotbugs.fail>false</spotbugs.fail>
|
||||||
<opentelemetry.version>0.14.0</opentelemetry.version>
|
<opentelemetry.version>0.14.0</opentelemetry.version>
|
||||||
<springboot.version>3.2.6</springboot.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -43,6 +43,7 @@
|
||||||
<junit-bom.version>5.8.2</junit-bom.version>
|
<junit-bom.version>5.8.2</junit-bom.version>
|
||||||
<snakeyaml.version>2.0</snakeyaml.version>
|
<snakeyaml.version>2.0</snakeyaml.version>
|
||||||
<testcontainers.version>1.20.0</testcontainers.version>
|
<testcontainers.version>1.20.0</testcontainers.version>
|
||||||
|
<springboot.version>3.2.6</springboot.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-web</artifactId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
<version>2.7.18</version>
|
<version>${springboot.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.deploy.skip>false</maven.deploy.skip>
|
<maven.deploy.skip>false</maven.deploy.skip>
|
||||||
<springboot.version>3.2.6</springboot.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<grpc.version>1.64.0</grpc.version>
|
<grpc.version>1.64.0</grpc.version>
|
||||||
<protobuf.version>3.25.0</protobuf.version>
|
<protobuf.version>3.25.0</protobuf.version>
|
||||||
<opentelemetry.version>1.39.0</opentelemetry.version>
|
<opentelemetry.version>1.39.0</opentelemetry.version>
|
||||||
<spring-boot.version>3.3.1</spring-boot.version>
|
<springboot.version>3.3.1</springboot.version>
|
||||||
<logback-classic.version>1.4.12</logback-classic.version>
|
<logback-classic.version>1.4.12</logback-classic.version>
|
||||||
<wiremock.version>3.9.1</wiremock.version>
|
<wiremock.version>3.9.1</wiremock.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-dependencies</artifactId>
|
<artifactId>spring-boot-dependencies</artifactId>
|
||||||
<version>${spring-boot.version}</version>
|
<version>${springboot.version}</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
@ -292,7 +292,7 @@
|
||||||
</property>
|
</property>
|
||||||
</activation>
|
</activation>
|
||||||
<properties>
|
<properties>
|
||||||
<spring-boot.version>${env.PRODUCT_SPRING_BOOT_VERSION}</spring-boot.version>
|
<springboot.version>${env.PRODUCT_SPRING_BOOT_VERSION}</springboot.version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -97,13 +97,13 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-web</artifactId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
<version>2.7.18</version>
|
<version>${springboot.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-autoconfigure</artifactId>
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||||
<version>2.7.18</version>
|
<version>${springboot.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in New Issue