build.gradle 512 B

1234567891011121314151617
  1. apply plugin: 'kotlin'
  2. compileKotlin{
  3. kotlinOptions.jvmTarget = "1.8"
  4. }
  5. dependencies {
  6. api project(":mybatis-plus-extension")
  7. api "org.noear:mybatis-solon-plugin:3.0.1"
  8. api "org.noear:solon-aot:3.0.1"
  9. testImplementation "org.noear:solon-test:3.0.1"
  10. testImplementation "io.github.classgraph:classgraph:4.8.176"
  11. testImplementation "com.zaxxer:HikariCP:4.0.3"
  12. testImplementation "${lib.h2}"
  13. testImplementation "${lib.mysql}"
  14. testImplementation "${lib.'logback-classic'}"
  15. }