Skip to content

Commit

Permalink
Merge pull request #92 from mercyblitz/dev-1.x
Browse files Browse the repository at this point in the history
Polish #80
  • Loading branch information
mercyblitz authored Jan 11, 2025
2 parents 7f55dfb + 5d3dcb3 commit 10abbb4
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 10abbb4

Please sign in to comment.