build.gradle 811 B

12345678910111213141516171819
  1. description "flowLong mybatis-plus spring-boot starter"
  2. dependencies {
  3. api project(":flowlong-mybatis-plus")
  4. implementation("com.baomidou:mybatis-plus-boot-starter")
  5. compileOnly("org.springframework.boot:spring-boot-starter-web")
  6. compileOnly("org.springframework.boot:spring-boot-autoconfigure")
  7. compileOnly("org.springframework.boot:spring-boot-configuration-processor")
  8. annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
  9. testImplementation("org.springframework.boot:spring-boot-starter-test")
  10. testImplementation("org.springframework.boot:spring-boot-starter-json")
  11. testImplementation("org.springframework:spring-jdbc")
  12. testImplementation("com.baomidou:mybatis-plus-extension")
  13. testImplementation("mysql:mysql-connector-java")
  14. }