build.gradle 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. dependencies {
  2. compile project(":mybatis-plus-api")
  3. compile rootProject.ext.dependencies["jsqlparser"]
  4. compile rootProject.ext.dependencies["mybatis-spring"]
  5. compile rootProject.ext.dependencies["mybatis"]
  6. compileOnly rootProject.ext.dependencies["spring-context-support"]
  7. compileOnly rootProject.ext.dependencies["spring-jdbc"]
  8. testCompileOnly "javax.servlet:servlet-api:2.5"
  9. testCompile "org.mybatis.caches:mybatis-ehcache:1.1.0"
  10. testCompile "ch.qos.logback:logback-classic:1.2.2"
  11. testCompile "junit:junit:4.12"
  12. testCompile("org.apache.commons:commons-dbcp2:2.1.1") {
  13. exclude(module: 'commons-logging')
  14. }
  15. testCompile "org.apache.commons:commons-pool2:2.4.2"
  16. testCompile "com.microsoft.sqlserver:sqljdbc4:4.0"
  17. testCompile "org.postgresql:postgresql:9.4.1212"
  18. testCompile "com.oracle:ojdbc14:10.2.0.5.0"
  19. testCompile "com.h2database:h2:1.4.194"
  20. testCompile "mysql:mysql-connector-java:5.1.38"
  21. testCompile "org.slf4j:slf4j-api:1.7.25"
  22. testCompile "org.slf4j:jcl-over-slf4j:1.7.25"
  23. testCompile "org.springframework:spring-test:${springVersion}"
  24. testCompile "org.springframework:spring-webmvc:${springVersion}"
  25. testCompile "org.aspectj:aspectjweaver:1.8.9"
  26. testCompile "javax.servlet:servlet-api:2.5"
  27. testCompile "org.projectlombok:lombok:1.16.16"
  28. testCompile rootProject.ext.dependencies["spring-context-support"]
  29. testCompile rootProject.ext.dependencies["spring-jdbc"]
  30. testCompile "com.zaxxer:HikariCP:2.7.0"
  31. }