Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mercyblitz committed Aug 21, 2024
1 parent 6df4415 commit f6a1485
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions microsphere-spring-cloud-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@
<scope>test</scope>
</dependency>

<!-- Testcontainers -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

</project>
16 changes: 16 additions & 0 deletions microsphere-spring-cloud-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<spring-cloud.version>2021.0.9</spring-cloud.version>
<spring-cloud-alibaba.version>2021.0.6.1</spring-cloud-alibaba.version>
<microsphere-spring-boot.version>0.0.2</microsphere-spring-boot.version>
<testcontainers.version>1.20.1</testcontainers.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -65,6 +66,15 @@
<scope>import</scope>
</dependency>

<!-- Testcontainers Dependencies -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -194,6 +204,12 @@
<artifactId>spring-cloud-starter-consul-config</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>consul</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</profile>

Expand Down

0 comments on commit f6a1485

Please sign in to comment.