Skip to content

Commit

Permalink
Polish #80
Browse files Browse the repository at this point in the history
  • Loading branch information
mercyblitz committed Jan 11, 2025
1 parent 6a19df7 commit 5d3dcb3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions microsphere-spring-webflux/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,59 @@
<version>${revision}</version>
</dependency>

<!-- Spring Context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<optional>true</optional>
</dependency>

<!-- Spring WebFlux -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<optional>true</optional>
</dependency>

<!-- Jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<optional>true</optional>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<optional>true</optional>
</dependency>

<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<profiles>
Expand Down

0 comments on commit 5d3dcb3

Please sign in to comment.