增加了multi-tenant-core, multi-tenant-datasource ,未完全测试
diff --git a/multi-tenant-datasource/build.gradle b/multi-tenant-datasource/build.gradle
new file mode 100644
index 0000000..09ed014
--- /dev/null
+++ b/multi-tenant-datasource/build.gradle
@@ -0,0 +1,29 @@
+plugins {
+ id "java-library"
+ id "org.springframework.boot"
+}
+
+jar {
+ enabled = true
+ archiveFileName = "${project.name}-${buildVersion}.${archiveExtension.getOrElse('.jar')}"
+ manifest {
+ attributes('Implementation-Title': project.name,
+ 'Implementation-Version': buildVersion)
+ }
+}
+println("Build Version: $buildVersion")
+bootJar {
+ enabled = false
+}
+
+dependencies {
+ implementation(":multi-tenant-core")
+ implementation "org.springframework.boot:spring-boot-autoconfigure"
+ implementation "commons-beanutils:commons-beanutils:${beanutilsVersion}"
+ implementation "commons-codec:commons-codec:${codecVersion}"
+ implementation "org.apache.commons:commons-lang3:${lang3Version}"
+
+ compileOnly "org.projectlombok:lombok:${lombokVersion}"
+ annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
+}
+