1234567891011121314151617181920212223 |
- dependencies {
- implementation project(":mybatis-plus-spring")
- implementation "${lib.velocity}"
- implementation "${lib.freemarker}"
- implementation "${lib.beetl}"
- implementation "${lib.enjoy}"
- implementation "${lib.'swagger-annotations'}"
- implementation "io.springfox:springfox-swagger2:3.0.0"
- compileOnly "org.jetbrains:annotations:24.1.0"
- testImplementation "${lib.sqlserver}"
- testImplementation "${lib.postgresql}"
- testImplementation lib.oracle as ConfigurableFileTree
- testImplementation lib.dm as ConfigurableFileTree
- testImplementation "${lib.h2}"
- testImplementation "${lib.mysql}"
- testImplementation "${lib.sqlite}"
- testImplementation "${lib.firebird}"
- testImplementation "${lib.'swagger-annotations'}"
- testImplementation "${lib.'logback-classic'}"
- testCompileOnly "org.jetbrains:annotations:24.1.0"
- }
|