Skip to content

Commit

Permalink
Remove blockhound dependency
Browse files Browse the repository at this point in the history
Removed due to issues with OpenJDK version 13+
reactor/BlockHound#33
  • Loading branch information
Berchris Requiao committed Jul 27, 2021
1 parent 8d472ad commit e8dffca
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.projectreactor.tools</groupId>
<artifactId>blockhound</artifactId>
<version>${blockhound.version}</version>
</dependency>

<!-- API Documentation -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import reactor.blockhound.BlockHound;

@SpringBootApplication
@EnableTransactionManagement
public class ReactiveMicroserviceApplication {

public static void main(String[] args) {
BlockHound.install();
SpringApplication.run(ReactiveMicroserviceApplication.class, args);
}

Expand Down

0 comments on commit e8dffca

Please sign in to comment.