Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <! — Tested with mybatis.spring.boot.version = 1.3.0 and spring-boot-starter-parent.version = 1.5.3.RELEASE → 
  2. <! — No need to specify version for JikaryCP as it is specified with Spring Boot dependencies →
  3. <dependency>
  4.  <groupId>com.zaxxer</groupId>
  5.  <artifactId>HikariCP</artifactId>
  6. </dependency>
  7. <dependency>
  8.  <groupId>org.mybatis.spring.boot</groupId>
  9.  <artifactId>mybatis-spring-boot-starter</artifactId>
  10.  <version>${mybatis.spring.boot.version}</version>
  11.  <exclusions>
  12.  <exclusion>
  13.  <groupId>org.apache.tomcat</groupId>
  14.  <artifactId>tomcat-jdbc</artifactId>
  15.  </exclusion>
  16.  <exclusion>
  17.  <groupId>org.apache.tomcat</groupId>
  18.  <artifactId>tomcat-juli</artifactId>
  19.  </exclusion>
  20.  </exclusions>
  21. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement