Skip to content

Commit

Permalink
Switch to Tomcat data source in place of Hikari
Browse files Browse the repository at this point in the history
This change does not compromise functionality but it speeds up
start up (shaves approx. 1s off 4s startup time on my laptop).
  • Loading branch information
dsyer committed Oct 23, 2015
1 parent c2bb71b commit d98d534
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions zipkin-java-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<optional>true</optional>
</dependency>

Expand All @@ -101,12 +101,6 @@
<optional>true</optional>
</dependency>

<!-- Spring Boot will find this in the classpath and use it. -->
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down

0 comments on commit d98d534

Please sign in to comment.