Skip to content
Snippets Groups Projects
Commit 868e828a authored by Felix Reichenbach's avatar Felix Reichenbach
Browse files

Add Spring-Cloud-Config version management to common parent

parent c5e7bcf5
No related branches found
No related tags found
1 merge request!5Add Spring-Cloud-Config version management to common parent
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
## Changelog ## Changelog
### 4.10.0-SNAPSHOT ### 4.10.0-SNAPSHOT
* Add Spring-Cloud-Config version management to common parent
### 4.9.0 ### 4.9.0
* Update Spring-Boot to 3.4.1 / Spring 6.2.1 * Update Spring-Boot to 3.4.1 / Spring 6.2.1
......
...@@ -54,6 +54,7 @@ ...@@ -54,6 +54,7 @@
<mapstruct.version>1.6.3</mapstruct.version> <mapstruct.version>1.6.3</mapstruct.version>
<spring-boot.version>3.4.1</spring-boot.version> <spring-boot.version>3.4.1</spring-boot.version>
<spring-cloud-config.version>4.2.0</spring-cloud-config.version>
<!-- plugins --> <!-- plugins -->
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
...@@ -89,6 +90,16 @@ ...@@ -89,6 +90,16 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
<version>${spring-cloud-config.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
<version>${spring-cloud-config.version}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment