Browse Source

新增 adapter

hubin 7 years ago
parent
commit
f40eadd0ab
1 changed files with 12 additions and 0 deletions
  1. 12 0
      mybatis-plus-adapter/build.gradle

+ 12 - 0
mybatis-plus-adapter/build.gradle

@@ -0,0 +1,12 @@
+apply plugin: 'java'
+
+sourceCompatibility = 1.8
+
+dependencies {
+    compile project(":mybatis-plus-core")
+    compile project(":mybatis-plus-extension")
+    compile project(":mybatis-plus-annotation")
+    testCompile 'junit:junit:4.12'
+    compileOnly rootProject.ext.dependencies["lombok"]
+
+}