jdbc.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. apply from: "${rootDir}/gradle/java.gradle"
  2. apply plugin: 'org.unbroken-dome.test-sets'
  3. testSets {
  4. latestDepTest {
  5. dirName = 'test'
  6. }
  7. }
  8. dependencies {
  9. // jdbc unit testing
  10. testCompile group: 'com.h2database', name: 'h2', version: '1.3.169' // first version jdk 1.6 compatible
  11. testCompile group: 'org.apache.derby', name: 'derby', version: '10.6.1.0'
  12. testCompile group: 'org.hsqldb', name: 'hsqldb', version: '2.0.0'
  13. testCompile group: 'org.apache.tomcat', name: 'tomcat-jdbc', version: '7.0.19'
  14. // tomcat needs this to run
  15. testCompile group: 'org.apache.tomcat', name: 'tomcat-juli', version: '7.0.19'
  16. testCompile group: 'com.zaxxer', name: 'HikariCP', version: '2.4.0'
  17. testCompile group: 'com.mchange', name: 'c3p0', version: '0.9.5'
  18. latestDepTestCompile group: 'com.h2database', name: 'h2', version: '+'
  19. latestDepTestCompile group: 'org.apache.derby', name: 'derby', version: '10.14.+'
  20. latestDepTestCompile group: 'org.hsqldb', name: 'hsqldb', version: '+'
  21. latestDepTestCompile group: 'org.apache.tomcat', name: 'tomcat-jdbc', version: '+'
  22. latestDepTestCompile group: 'org.apache.tomcat', name: 'tomcat-juli', version: '+'
  23. latestDepTestCompile group: 'com.zaxxer', name: 'HikariCP', version: '+'
  24. latestDepTestCompile group: 'com.mchange', name: 'c3p0', version: '+'
  25. }